Author: btellier
Date: Tue Sep 22 10:15:31 2015
New Revision: 1704516
URL: http://svn.apache.org/viewvc?rev=1704516&view=rev
Log:
MAILBOX-64 Correct QuotaImpl bug
Modified:
james/mailbox/trunk/store/src/main/java/org/apache/james/mailbox/store/quota/QuotaImpl.java
Modified:
james/mailbox/trunk/store/src/main/java/org/apache/james/mailbox/store/quota/QuotaImpl.java
URL:
http://svn.apache.org/viewvc/james/mailbox/trunk/store/src/main/java/org/apache/james/mailbox/store/quota/QuotaImpl.java?rev=1704516&r1=1704515&r2=1704516&view=diff
==============================================================================
---
james/mailbox/trunk/store/src/main/java/org/apache/james/mailbox/store/quota/QuotaImpl.java
(original)
+++
james/mailbox/trunk/store/src/main/java/org/apache/james/mailbox/store/quota/QuotaImpl.java
Tue Sep 22 10:15:31 2015
@@ -28,7 +28,8 @@ public final class QuotaImpl implements
private final static Quota UNLIMITED_QUOTA = new QuotaImpl(UNKNOWN,
UNLIMITED);
private QuotaImpl(long used, long max) {
-
+ this.max = max;
+ this.used = used;
}
@Override
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]