Emily-Jiang / microprofile.config.incubator

Apache License 2.0
0 stars 2 forks source link

Config needs methods which allows for null to be returned #7

Closed tevans78 closed 7 years ago

tevans78 commented 7 years ago

e.g. for boolean there is... boolean getBoolean(String propertyName); boolean getBoolean(String propertyName, boolean defaultValue); Boolean getBoolean(String propertyName, Boolean defaultValue); none of these ever return null if the property does not exist. Need to add Boolean getBoolean(String propertyName);

Emily-Jiang commented 7 years ago

Updated boolean getBoolean(String propertyName); to Boolean getBoolean(String propertyName);