> On Apr 4, 2018, at 11:47 PM, Emmanuel Lécharny <[email protected]> wrote: > > Le 05/04/2018 à 00:57, Shawn McKinney a écrit : >> >>> On Apr 4, 2018, at 4:18 AM, Emmanuel Lécharny <[email protected]> wrote: >>> >>> One more thing : >>> >>> if ( props.size() > 0 ) >>> >>> should be >>> >>> if ( !props.isEmpty() ) >> >> That won’t work, props is not java.util.Properties, it’s: > > List<Props.Entry> props = inProps.getEntry(); > > So it *must* implement List.isEmpty()...
I stand corrected. Thanks
