|
@@ -223,9 +223,6 @@ public class Configuration implements Iterable<Map.Entry<String,String>>,
|
|
|
*/
|
|
|
public Configuration(boolean loadDefaults) {
|
|
|
this.loadDefaults = loadDefaults;
|
|
|
- if (LOG.isDebugEnabled()) {
|
|
|
- LOG.debug(StringUtils.stringifyException(new IOException("config()")));
|
|
|
- }
|
|
|
synchronized(Configuration.class) {
|
|
|
REGISTRY.put(this, null);
|
|
|
}
|
|
@@ -256,11 +253,6 @@ public class Configuration implements Iterable<Map.Entry<String,String>>,
|
|
|
*/
|
|
|
@SuppressWarnings("unchecked")
|
|
|
public Configuration(Configuration other) {
|
|
|
- if (LOG.isDebugEnabled()) {
|
|
|
- LOG.debug(StringUtils.stringifyException
|
|
|
- (new IOException("config(config)")));
|
|
|
- }
|
|
|
-
|
|
|
this.resources = (ArrayList)other.resources.clone();
|
|
|
synchronized(other) {
|
|
|
if (other.properties != null) {
|