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 b27a5a351093c2ff41bf5bff4c5504dc780dd2f6 Author: Benoit Tellier <[email protected]> AuthorDate: Mon Nov 16 14:09:28 2020 +0700 JAMES-3440 Type limit as an Int --- .../jmap-rfc-8621/src/main/scala/org/apache/james/jmap/core/Query.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/protocols/jmap-rfc-8621/src/main/scala/org/apache/james/jmap/core/Query.scala b/server/protocols/jmap-rfc-8621/src/main/scala/org/apache/james/jmap/core/Query.scala index b5d0473..a290561 100644 --- a/server/protocols/jmap-rfc-8621/src/main/scala/org/apache/james/jmap/core/Query.scala +++ b/server/protocols/jmap-rfc-8621/src/main/scala/org/apache/james/jmap/core/Query.scala @@ -42,7 +42,7 @@ object Position { } } -case class LimitUnparsed(value: Long) extends AnyVal +case class LimitUnparsed(value: Int) extends AnyVal object Limit { type Limit = Int Refined Positive --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
