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 e7a528f9586bfd15cbc1a3be3d7cb5fadefabb38 Author: Benoit Tellier <[email protected]> AuthorDate: Tue Dec 10 09:53:49 2019 +0700 [Refactoring] SetQuotaRequest.ResourceLimit.limit can be unboxed --- .../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 e353548..1c80405 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 @@ -35,7 +35,7 @@ public class SetQuotaRequest extends AbstractImapRequest { public static class ResourceLimit { private final String resource; - private final Long limit; + private final long limit; public ResourceLimit(String resource, long limit) { this.limit = limit; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
