jira-importer opened a new issue, #169: URL: https://github.com/apache/maven-verifier/issues/169
**[Slawomir Jaranowski](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=slawekjaranowski)** opened **[MSHARED-1124](https://issues.apache.org/jira/browse/MSHARED-1124?redirect=false)** and commented Deprecated method ``` Verifier#filterFile(java.lang.String, java.lang.String, java.lang.String, java.util.Properties) ``` is used about 262 times by Maven core integration test, most of case we have code, like: ``` verifier.filterFile( "settings-template.xml", "settings.xml", "UTF-8", verifier.newDefaultFilterProperties() ); ``` With a new method can be replaced by: ``` verifier.filterFile( "settings-template.xml", "settings.xml", "UTF-8" ); ``` --- **Remote Links:** - [GitHub Pull Request #39 ](https://github.com/apache/maven-verifier/pull/39) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
