You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2008/03/14 00:20:10 UTC

svn commit: r636917 - /commons/proper/net/trunk/src/java/org/apache/commons/net/pop3/POP3Reply.java

Author: sebb
Date: Thu Mar 13 16:19:56 2008
New Revision: 636917

URL: http://svn.apache.org/viewvc?rev=636917&view=rev
Log:
Make constants final

Modified:
    commons/proper/net/trunk/src/java/org/apache/commons/net/pop3/POP3Reply.java

Modified: commons/proper/net/trunk/src/java/org/apache/commons/net/pop3/POP3Reply.java
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/java/org/apache/commons/net/pop3/POP3Reply.java?rev=636917&r1=636916&r2=636917&view=diff
==============================================================================
--- commons/proper/net/trunk/src/java/org/apache/commons/net/pop3/POP3Reply.java (original)
+++ commons/proper/net/trunk/src/java/org/apache/commons/net/pop3/POP3Reply.java Thu Mar 13 16:19:56 2008
@@ -26,10 +26,10 @@
 public final class POP3Reply
 {
     /*** The reply code indicating success of an operation. ***/
-    public static int OK = 0;
+    public static final int OK = 0;
 
     /*** The reply code indicating failure of an operation. ***/
-    public static int ERROR = 1;
+    public static final int ERROR = 1;
 
     // Cannot be instantiated.
     private POP3Reply()