You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2018/12/13 19:23:20 UTC

svn commit: r1848885 - /tomcat/trunk/java/org/apache/jasper/compiler/SmapStratum.java

Author: markt
Date: Thu Dec 13 19:23:20 2018
New Revision: 1848885

URL: http://svn.apache.org/viewvc?rev=1848885&view=rev
Log:
Fix an IDE nag
(only fix one to trigger a CI build)

Modified:
    tomcat/trunk/java/org/apache/jasper/compiler/SmapStratum.java

Modified: tomcat/trunk/java/org/apache/jasper/compiler/SmapStratum.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/compiler/SmapStratum.java?rev=1848885&r1=1848884&r2=1848885&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/jasper/compiler/SmapStratum.java (original)
+++ tomcat/trunk/java/org/apache/jasper/compiler/SmapStratum.java Thu Dec 13 19:23:20 2018
@@ -53,7 +53,8 @@ public class SmapStratum {
 
         public void setOutputStartLine(int outputStartLine) {
             if (outputStartLine < 0)
-                throw new IllegalArgumentException(Localizer.getMessage("jsp.error.negativeParameter", outputStartLine));
+                throw new IllegalArgumentException(Localizer.getMessage(
+                        "jsp.error.negativeParameter", Integer.valueOf(outputStartLine)));
             this.outputStartLine = outputStartLine;
         }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org