archaius2-core/src/main/java/com/netflix/archaius/config/DefaultCompositeConfig.java [92:105]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        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 [212:225]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        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);
            }
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



