-
Bug
-
Resolution: Done
-
Minor
-
2.6.7
-
None
-
Low
this code snippet from ConfigurationFactory.java:
public static InputStream getConfigStream(String properties) throws IOException {
InputStream configStream = null;
if (propertiesOverride != null)
return getConfigStream(propertiesOverride);
if propertiesOverride is set, how does the recursion end?