commits@javamail.java.net

[mercurial:107] SLOP should've been static.

From: <shannon_at_kenai.com>
Date: Mon, 9 Feb 2009 19:41:04 +0000 (GMT)

Repository: mercurial
Revision: 107
Author: Bill Shannon <bill.shannon_at_sun.com>
Date: 2009-02-04 23:57:22 UTC

Log Message:
-----------
SLOP should've been static.

Modified Paths:
--------------
    mail/src/main/java/com/sun/mail/imap/MessageCache.java

Diffs:
-----
diff -r 6459dc681c86 -r 6dae9c3bd314
mail/src/main/java/com/sun/mail/imap/MessageCache.java
--- a/mail/src/main/java/com/sun/mail/imap/MessageCache.java Wed Feb
04 15:55:46 2009 -0800
+++ b/mail/src/main/java/com/sun/mail/imap/MessageCache.java Wed Feb
04 15:57:22 2009 -0800
@@ -1,7 +1,7 @@
 /*
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  *
- * Copyright 1997-2008 Sun Microsystems, Inc. All rights reserved.
+ * Copyright 1997-2009 Sun Microsystems, Inc. All rights reserved.
  *
  * The contents of this file are subject to the terms of either the
GNU
  * General Public License Version 2 only ("GPL") or the Common
Development
@@ -86,7 +86,7 @@
      * Grow the array by at least this much, to avoid constantly
      * reallocating the array.
      */
- private final int SLOP = 64;
+ private static final int SLOP = 64;
 
     /**
      * Construct a new message cache of the indicated size.