Author: markt
Date: Thu Dec 13 19:41:52 2018
New Revision: 1848887

URL: http://svn.apache.org/viewvc?rev=1848887&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=1848887&r1=1848886&r2=1848887&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:41:52 2018
@@ -68,7 +68,8 @@ public class SmapStratum {
          */
         public void setLineFileID(int lineFileID) {
             if (lineFileID < 0)
-                throw new 
IllegalArgumentException(Localizer.getMessage("jsp.error.negativeParameter", 
lineFileID));
+                throw new IllegalArgumentException(Localizer.getMessage(
+                        "jsp.error.negativeParameter", 
Integer.valueOf(lineFileID)));
             this.lineFileID = lineFileID;
             this.lineFileIDSet = true;
         }



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

Reply via email to