Add a map entry configuration to the list for this map entries configuration.
8283848586878889909192
MapEntryConfig config = (MapEntryConfig) digester.pop(); MapEntriesConfig parent = (MapEntriesConfig) digester.peek(); MapEntryConfig previous = parent.getEntry(config.getKey()); if (previous == null) { parent.addEntry(config); } else { merge(config, previous); } }