diff --git a/plugins/github/src/META-INF/githubtracker.xml b/plugins/github/src/META-INF/githubtracker.xml
new file mode 100644
index 000000000000..3f70e9be02cc
--- /dev/null
+++ b/plugins/github/src/META-INF/githubtracker.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/plugins/github/src/META-INF/plugin.xml b/plugins/github/src/META-INF/plugin.xml
index db65ce0b988f..052df4b76398 100644
--- a/plugins/github/src/META-INF/plugin.xml
+++ b/plugins/github/src/META-INF/plugin.xml
@@ -6,7 +6,7 @@
com.intellij.modules.lang
Git4Idea
- com.intellij.tasks
+ com.intellij.tasks
@@ -14,7 +14,6 @@
-
diff --git a/plugins/github/src/org/jetbrains/plugins/github/GithubCheckoutListener.java b/plugins/github/src/org/jetbrains/plugins/github/GithubCheckoutListener.java
index 5541bbd0a785..3b059e090d10 100644
--- a/plugins/github/src/org/jetbrains/plugins/github/GithubCheckoutListener.java
+++ b/plugins/github/src/org/jetbrains/plugins/github/GithubCheckoutListener.java
@@ -82,7 +82,7 @@ public class GithubCheckoutListener implements CheckoutListener {
final Runnable taskInitializationRunnable = new Runnable() {
public void run() {
try {
- enableGithubTrackerIntergation(openedProject, settings.getLogin(), settings.getPassword(), author, name);
+ enableGithubTrackerIntegration(openedProject, settings.getLogin(), settings.getPassword(), author, name);
}
catch (Exception e) {
// Ignore it
@@ -96,7 +96,11 @@ public class GithubCheckoutListener implements CheckoutListener {
}
}
- private void enableGithubTrackerIntergation(final Project project, final String login, final String password, final String author, final String name) {
+ private void enableGithubTrackerIntegration(final Project project,
+ final String login,
+ final String password,
+ final String author,
+ final String name) {
// Look for github repository type
final TaskManagerImpl manager = (TaskManagerImpl)TaskManager.getManager(project);
final TaskRepository[] allRepositories = manager.getAllRepositories();