Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonrad Kolosowski2004-01-26 23:22:25 +0000
committerKonrad Kolosowski2004-01-26 23:22:25 +0000
commitf31a6334b1f8416b2d25c8171d9ab5da8075b1d7 (patch)
tree8c8ee5d0578047f61c17acd62ddd6e3a54dd58fe /org.eclipse.help.base
parent03e4c872f4c1b7b1e33cc1de037886ffedc67677 (diff)
downloadeclipse.platform.ua-f31a6334b1f8416b2d25c8171d9ab5da8075b1d7.tar.gz
eclipse.platform.ua-f31a6334b1f8416b2d25c8171d9ab5da8075b1d7.tar.xz
eclipse.platform.ua-f31a6334b1f8416b2d25c8171d9ab5da8075b1d7.zip
index out of workspacev20040126
Diffstat (limited to 'org.eclipse.help.base')
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/base/IndexToolApplication.java4
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/search/SearchIndex.java3
2 files changed, 2 insertions, 5 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/base/IndexToolApplication.java b/org.eclipse.help.base/src/org/eclipse/help/internal/base/IndexToolApplication.java
index 19399be57..abd1d78fd 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/base/IndexToolApplication.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/base/IndexToolApplication.java
@@ -14,8 +14,6 @@ import java.io.*;
import java.util.*;
import java.util.zip.*;
-
-import org.eclipse.core.internal.runtime.*;
import org.eclipse.core.runtime.*;
/**
@@ -74,7 +72,7 @@ public class IndexToolApplication
private void preindex(String outputDir, Locale locale) throws Exception {
File indexPath =
- InternalPlatform.getDefault().getConfigurationMetadataLocation().append(".helpIx").append(locale.toString()).toFile();
+ Platform.getConfigurationMetadataLocation().append(".helpIx").append(locale.toString()).toFile();
// clean
if (indexPath.exists()) {
delete(indexPath);
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/search/SearchIndex.java b/org.eclipse.help.base/src/org/eclipse/help/internal/search/SearchIndex.java
index c912775ab..8be1a215f 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/search/SearchIndex.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/search/SearchIndex.java
@@ -18,7 +18,6 @@ import java.util.zip.*;
import org.apache.lucene.document.*;
import org.apache.lucene.index.*;
import org.apache.lucene.search.*;
-import org.eclipse.core.internal.runtime.*;
import org.eclipse.core.runtime.*;
import org.eclipse.help.internal.*;
import org.eclipse.help.internal.base.*;
@@ -57,7 +56,7 @@ public class SearchIndex {
this(
locale,
analyzerDesc,
- InternalPlatform.getDefault().getConfigurationMetadataLocation().append(".helpIx").append(locale).toFile()
+ Platform.getConfigurationMetadataLocation().append(".helpIx").append(locale).toFile()
);
}
/**

Back to the top