Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help.base/src/org/eclipse/help/internal/base/remote/RemoteContentLocator.java')
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/base/remote/RemoteContentLocator.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/base/remote/RemoteContentLocator.java b/org.eclipse.help.base/src/org/eclipse/help/internal/base/remote/RemoteContentLocator.java
index fc7740855..a63e64128 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/base/remote/RemoteContentLocator.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/base/remote/RemoteContentLocator.java
@@ -4,7 +4,7 @@
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -18,15 +18,15 @@ public class RemoteContentLocator {
private static Map<String, String> InfoCenterMap = null; // hash table
public RemoteContentLocator() {
-
+
}
public static void addContentPage(String contributorID, String InfoCenterUrl) {
-
+
if (InfoCenterMap == null){
InfoCenterMap = new TreeMap<String, String>(); // sorted map
}
-
+
InfoCenterMap.put(contributorID, InfoCenterUrl);
}

Back to the top