Removed commented code

This commit is contained in:
Nick Goupinets 2021-03-11 15:48:22 -05:00
parent 01b1210b8a
commit 0013910c53
1 changed files with 0 additions and 8 deletions

View File

@ -39,14 +39,6 @@ public class ConfigLoader {
theResourcePath = theResourcePath.substring(CLASSPATH.length()); theResourcePath = theResourcePath.substring(CLASSPATH.length());
} }
return ClasspathUtil.loadResource(theResourcePath); 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) { public static Properties loadProperties(String theResourcePath) {