This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit fbd7222917ba1528d242e65b27583eec53a76fca Author: Benoit Tellier <[email protected]> AuthorDate: Tue Dec 10 09:54:24 2019 +0700 [Refactoring] SetQuotaRequest.ResourceLimit.limit can be static --- .../java/org/apache/james/imap/message/request/SetQuotaRequest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/imap/src/main/java/org/apache/james/imap/message/request/SetQuotaRequest.java b/protocols/imap/src/main/java/org/apache/james/imap/message/request/SetQuotaRequest.java index 1c80405..6db1979 100644 --- a/protocols/imap/src/main/java/org/apache/james/imap/message/request/SetQuotaRequest.java +++ b/protocols/imap/src/main/java/org/apache/james/imap/message/request/SetQuotaRequest.java @@ -37,7 +37,7 @@ public class SetQuotaRequest extends AbstractImapRequest { private final String resource; private final long limit; - public ResourceLimit(String resource, long limit) { + ResourceLimit(String resource, long limit) { this.limit = limit; this.resource = resource; } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
