archaius2-core/src/main/java/com/netflix/archaius/config/DefaultCompositeConfig.java [89:103]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            this.cachedState = new CachedState(data, instrumentedKeys);
        }

        private void updateData(
                Map<String, Object> data,
                Map<String, Config> instrumentedKeys,
                String key,
                Object value,
                Config childConfig,
                boolean instrumented) {
            if (!data.containsKey(key)) {
                if (instrumented) {
                    instrumentedKeys.put(key, childConfig);
                }
                data.put(key, value);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



archaius2-core/src/main/java/com/netflix/archaius/config/DefaultLayeredConfig.java [209:223]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            this.cachedState = new CachedState(data, instrumentedKeys);
        }

        private void updateData(
                Map<String, Object> data,
                Map<String, Config> instrumentedKeys,
                String key,
                Object value,
                Config childConfig,
                boolean instrumented) {
            if (!data.containsKey(key)) {
                if (instrumented) {
                    instrumentedKeys.put(key, childConfig);
                }
                data.put(key, value);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



