Author: sebb
Date: Thu Mar 13 13:11:43 2008
New Revision: 636861
URL: http://svn.apache.org/viewvc?rev=636861&view=rev
Log:
Make constants final
Modified:
commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/pop3/POP3Reply.java
Modified:
commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/pop3/POP3Reply.java
URL:
http://svn.apache.org/viewvc/commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/pop3/POP3Reply.java?rev=636861&r1=636860&r2=636861&view=diff
==============================================================================
---
commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/pop3/POP3Reply.java
(original)
+++
commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/pop3/POP3Reply.java
Thu Mar 13 13:11:43 2008
@@ -27,10 +27,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()