commons-configuration
commons-configuration copied to clipboard
Guard MapConfiguration against null maps
MapConfiguration has a protected
property map
, which is provided upon instantiation and cannot be changed later. The lack of null
guards for this property leads to inevitable NPEs at an undetermined later time. This PR implements a fail-fast guard.