diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ConfigLoader.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ConfigLoader.java index c4dcda4939e..4ff618ad65d 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ConfigLoader.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ConfigLoader.java @@ -39,14 +39,6 @@ public class ConfigLoader { theResourcePath = theResourcePath.substring(CLASSPATH.length()); } return ClasspathUtil.loadResource(theResourcePath); - -// try { -// URL url = ResourceUtils.getURL(theResourcePath); -// File file = ResourceUtils.getFile(url); -// return IOUtils.toString(new FileReader(file)); -// } catch (Exception e) { -// throw new RuntimeException(String.format("Unable to load resource %s", theResourcePath), e); -// } } public static Properties loadProperties(String theResourcePath) {