Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help/src/org/eclipse/help/internal/CachedEntityResolver.java')
-rw-r--r--org.eclipse.help/src/org/eclipse/help/internal/CachedEntityResolver.java36
1 files changed, 18 insertions, 18 deletions
diff --git a/org.eclipse.help/src/org/eclipse/help/internal/CachedEntityResolver.java b/org.eclipse.help/src/org/eclipse/help/internal/CachedEntityResolver.java
index 4e6162b86..4e3467b35 100644
--- a/org.eclipse.help/src/org/eclipse/help/internal/CachedEntityResolver.java
+++ b/org.eclipse.help/src/org/eclipse/help/internal/CachedEntityResolver.java
@@ -34,15 +34,15 @@ public class CachedEntityResolver implements EntityResolver {
@Override
public InputSource resolveEntity(String publicId, String systemId) {
- int index = systemId.lastIndexOf("/"); //$NON-NLS-1$
- File cachedCopy = null;
- if (index != -1) {
- cachedCopy = new File(HelpPlugin.getConfigurationDirectory(), "/DTDs"); //$NON-NLS-1$
- cachedCopy.mkdirs();
- cachedCopy = new File(cachedCopy, systemId.substring(index));
- }
- if (cachedCopy != null) {
- if (!cachedCopy.exists()) {
+ int index = systemId.lastIndexOf("/"); //$NON-NLS-1$
+ File cachedCopy = null;
+ if (index != -1) {
+ cachedCopy = new File(HelpPlugin.getConfigurationDirectory(), "/DTDs"); //$NON-NLS-1$
+ cachedCopy.mkdirs();
+ cachedCopy = new File(cachedCopy, systemId.substring(index));
+ }
+ if (cachedCopy != null) {
+ if (!cachedCopy.exists()) {
try {
URL system = new URL(systemId);
URLConnection sc = system.openConnection();
@@ -57,15 +57,15 @@ public class CachedEntityResolver implements EntityResolver {
}
} catch (IOException e) {
}
- }
- try {
- InputSource is = new InputSource(new FileReader(cachedCopy));
- is.setSystemId(systemId);
- is.setPublicId(publicId);
- return is;
- } catch (FileNotFoundException e) {}
- }
- return new InputSource(new StringReader("")); //$NON-NLS-1$
+ }
+ try {
+ InputSource is = new InputSource(new FileReader(cachedCopy));
+ is.setSystemId(systemId);
+ is.setPublicId(publicId);
+ return is;
+ } catch (FileNotFoundException e) {}
+ }
+ return new InputSource(new StringReader("")); //$NON-NLS-1$
}
}

Back to the top