| Summary: | Hide remote indexer for local projects | ||
|---|---|---|---|
| Product: | [Tools] PTP | Reporter: | Vivian Kong <vivkong> |
| Component: | RDT | Assignee: | Vivian Kong <vivkong> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | ptp-inbox |
| Version: | 4.0.3 | ||
| Target Milestone: | 4.0.4 | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
|
Description
Vivian Kong
Here's the proposed patch:
### Eclipse Workspace Patch 1.0
#P org.eclipse.ptp.rdt.ui
Index: src/org/eclipse/ptp/internal/rdt/ui/preferences/IndexerBlock.java
===================================================================
RCS file: /cvsroot/tools/org.eclipse.ptp/rdt/org.eclipse.ptp.rdt.ui/src/org/eclipse/ptp/internal/rdt/ui/preferences/IndexerBlock.java,v
retrieving revision 1.2.2.1
diff -u -r1.2.2.1 IndexerBlock.java
--- src/org/eclipse/ptp/internal/rdt/ui/preferences/IndexerBlock.java 9 Aug 2010 17:47:35 -0000 1.2.2.1
+++ src/org/eclipse/ptp/internal/rdt/ui/preferences/IndexerBlock.java 29 Sep 2010 18:19:08 -0000
@@ -455,7 +455,9 @@
fIndexerConfigMap.put(id, config);
}
} else {
- fIndexerConfigMap.put(id, config);
+ if (!(id.startsWith("org.eclipse.ptp.rdt.core.RemoteFastIndexer"))) { //$NON-NLS-1$
+ fIndexerConfigMap.put(id, config);
+ }
}
}
}
Fixed in ptp_4_0 and HEAD |