Skip to content

Commit

Permalink
Marks param as a deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszlenart committed Mar 8, 2017
1 parent 524343c commit 741f3fa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ public StrutsXmlConfigurationProvider(boolean errorIfMissing) {
* Constructs the configuration provider
*
* @param filename The filename to look for
* @param errorIfMissing If we should throw an exception if the file can't be found
* @param errorIfMissing If we should throw an exception if the file can't be found, @deprecated and should be dropped
* @param ctx Our ServletContext
*/
public StrutsXmlConfigurationProvider(String filename, boolean errorIfMissing, ServletContext ctx) {
public StrutsXmlConfigurationProvider(String filename, @Deprecated boolean errorIfMissing, ServletContext ctx) {
super(filename, errorIfMissing);
this.servletContext = ctx;
this.filename = filename;
Expand Down

0 comments on commit 741f3fa

Please sign in to comment.