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 2010/01/01 19:31:18 UTC

svn commit: r895048 - in /tomcat/trunk/java/org/apache/jasper/el: JspELException.java JspMethodNotFoundException.java JspPropertyNotFoundException.java JspPropertyNotWritableException.java

Author: markt
Date: Fri Jan  1 18:31:17 2010
New Revision: 895048

URL: http://svn.apache.org/viewvc?rev=895048&view=rev
Log:
Fix some trivial Eclipse warnings

Modified:
    tomcat/trunk/java/org/apache/jasper/el/JspELException.java
    tomcat/trunk/java/org/apache/jasper/el/JspMethodNotFoundException.java
    tomcat/trunk/java/org/apache/jasper/el/JspPropertyNotFoundException.java
    tomcat/trunk/java/org/apache/jasper/el/JspPropertyNotWritableException.java

Modified: tomcat/trunk/java/org/apache/jasper/el/JspELException.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/el/JspELException.java?rev=895048&r1=895047&r2=895048&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/jasper/el/JspELException.java (original)
+++ tomcat/trunk/java/org/apache/jasper/el/JspELException.java Fri Jan  1 18:31:17 2010
@@ -20,6 +20,8 @@
 
 public class JspELException extends ELException {
 
+    private static final long serialVersionUID = 1L;
+
     public JspELException(String mark, ELException e) {
         super(mark + " " + e.getMessage(), e.getCause());
     }

Modified: tomcat/trunk/java/org/apache/jasper/el/JspMethodNotFoundException.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/el/JspMethodNotFoundException.java?rev=895048&r1=895047&r2=895048&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/jasper/el/JspMethodNotFoundException.java (original)
+++ tomcat/trunk/java/org/apache/jasper/el/JspMethodNotFoundException.java Fri Jan  1 18:31:17 2010
@@ -20,6 +20,8 @@
 
 public class JspMethodNotFoundException extends MethodNotFoundException {
 
+    private static final long serialVersionUID = 1L;
+
     public JspMethodNotFoundException(String mark, MethodNotFoundException e) {
         super(mark + " " + e.getMessage(), e.getCause());
     }

Modified: tomcat/trunk/java/org/apache/jasper/el/JspPropertyNotFoundException.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/el/JspPropertyNotFoundException.java?rev=895048&r1=895047&r2=895048&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/jasper/el/JspPropertyNotFoundException.java (original)
+++ tomcat/trunk/java/org/apache/jasper/el/JspPropertyNotFoundException.java Fri Jan  1 18:31:17 2010
@@ -21,6 +21,8 @@
 public final class JspPropertyNotFoundException extends
         PropertyNotFoundException {
 
+    private static final long serialVersionUID = 1L;
+
     public JspPropertyNotFoundException(String mark, PropertyNotFoundException e) {
         super(mark + " " + e.getMessage(), e.getCause());
     }

Modified: tomcat/trunk/java/org/apache/jasper/el/JspPropertyNotWritableException.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/el/JspPropertyNotWritableException.java?rev=895048&r1=895047&r2=895048&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/jasper/el/JspPropertyNotWritableException.java (original)
+++ tomcat/trunk/java/org/apache/jasper/el/JspPropertyNotWritableException.java Fri Jan  1 18:31:17 2010
@@ -21,6 +21,8 @@
 public class JspPropertyNotWritableException extends
         PropertyNotWritableException {
 
+    private static final long serialVersionUID = 1L;
+
     public JspPropertyNotWritableException(String mark, PropertyNotWritableException e) {
         super(mark + " " + e.getMessage(), e.getCause());
     }



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