Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/internal/TeamManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/internal/TeamManager.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/internal/TeamManager.java
index 7a1cf3aa0..bed847b6b 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/internal/TeamManager.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/internal/TeamManager.java
@@ -359,7 +359,7 @@ public class TeamManager implements ITeamManager {
private void readState() throws TeamException {
// read saved repositories list and ignore list from disk, only if the file exists
- IPath pluginStateLocation = TeamPlugin.getPlugin().getStateLocation();
+ IPath pluginStateLocation = TeamPlugin.getPlugin().getStateLocation().append(GLOBALIGNORE_FILE);
File f = pluginStateLocation.toFile();
if(f.exists()) {
try {

Back to the top