Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaCorePlugin.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaCorePlugin.java10
1 files changed, 7 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaCorePlugin.java b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaCorePlugin.java
index daad9ab1e..57aebca52 100644
--- a/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaCorePlugin.java
+++ b/org.eclipse.mylyn.bugzilla.core/src/org/eclipse/mylyn/internal/bugzilla/core/BugzillaCorePlugin.java
@@ -1,10 +1,14 @@
/*******************************************************************************
- * Copyright (c) 2003, 2007 Mylyn project committers and others.
+ * Copyright (c) 2004, 2008 Tasktop Technologies and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Tasktop Technologies - initial API and implementation
*******************************************************************************/
+
package org.eclipse.mylyn.internal.bugzilla.core;
import java.io.File;
@@ -380,10 +384,10 @@ public class BugzillaCorePlugin extends Plugin {
}
public Set<BugzillaLanguageSettings> getLanguageSettings() {
- return connector.getLanguageSettings();
+ return BugzillaRepositoryConnector.getLanguageSettings();
}
public BugzillaLanguageSettings getLanguageSetting(String language) {
- return connector.getLanguageSetting(language);
+ return BugzillaRepositoryConnector.getLanguageSetting(language);
}
}

Back to the top