| Method and Description |
|---|
| org.apache.maven.shared.utils.PropertyUtils.loadProperties(File)
As of 3.1.0, please use method
PropertyUtils.loadOptionalProperties(java.io.File). This method should not
be used as it suppresses exceptions silently when loading properties fails and returns null instead of an
empty Properties instance when the given File is null. |
| org.apache.maven.shared.utils.PropertyUtils.loadProperties(InputStream)
As of 3.1.0, please use method
PropertyUtils.loadOptionalProperties(java.io.InputStream). This method
should not be used as it suppresses exceptions silently when loading properties fails. |
| org.apache.maven.shared.utils.PropertyUtils.loadProperties(URL)
As of 3.1.0, please use method
PropertyUtils.loadOptionalProperties(java.net.URL). This method should not
be used as it suppresses exceptions silently when loading properties fails and returns null instead of an
empty Properties instance when the given URL is null. |
Copyright © 2002–2016 The Apache Software Foundation. All rights reserved.