This is an automated email from the ASF dual-hosted git repository. chibenwa pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit bbd2df8c6b6922672528cbc2a826951352616ef4 Author: Benoit TELLIER <[email protected]> AuthorDate: Thu Apr 30 11:40:47 2026 +0200 JAMES-4203 Scala fix --- .../scala/org/apache/james/jmap/change/IdentityEventsSerializer.scala | 2 +- .../org/apache/james/jmap/change/IdentityEventsSerializerTest.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/protocols/jmap-rfc-8621/src/main/scala/org/apache/james/jmap/change/IdentityEventsSerializer.scala b/server/protocols/jmap-rfc-8621/src/main/scala/org/apache/james/jmap/change/IdentityEventsSerializer.scala index 927b4c248e..c31f9a9230 100644 --- a/server/protocols/jmap-rfc-8621/src/main/scala/org/apache/james/jmap/change/IdentityEventsSerializer.scala +++ b/server/protocols/jmap-rfc-8621/src/main/scala/org/apache/james/jmap/change/IdentityEventsSerializer.scala @@ -24,8 +24,8 @@ import java.util.{Optional, UUID} import com.fasterxml.jackson.annotation.JsonProperty import org.apache.james.core.{MailAddress, Username} import org.apache.james.events.Event.EventId -import org.apache.james.jmap.api.model.{EmailAddress, EmailerName, HtmlSignature, Identity, IdentityId, IdentityName, MayDeleteIdentity, TextSignature} import org.apache.james.jmap.api.identity.{AllCustomIdentitiesDeleted, CustomIdentityCreated, CustomIdentityDeleted, CustomIdentityUpdated} +import org.apache.james.jmap.api.model.{EmailAddress, EmailerName, HtmlSignature, Identity, IdentityId, IdentityName, MayDeleteIdentity, TextSignature} import scala.jdk.CollectionConverters._ import scala.jdk.OptionConverters._ diff --git a/server/protocols/jmap-rfc-8621/src/test/scala/org/apache/james/jmap/change/IdentityEventsSerializerTest.scala b/server/protocols/jmap-rfc-8621/src/test/scala/org/apache/james/jmap/change/IdentityEventsSerializerTest.scala index e4db4e743f..815920f5d5 100644 --- a/server/protocols/jmap-rfc-8621/src/test/scala/org/apache/james/jmap/change/IdentityEventsSerializerTest.scala +++ b/server/protocols/jmap-rfc-8621/src/test/scala/org/apache/james/jmap/change/IdentityEventsSerializerTest.scala @@ -24,9 +24,9 @@ import java.util.UUID import org.apache.james.JsonSerializationVerifier import org.apache.james.core.{MailAddress, Username} import org.apache.james.events.Event.EventId +import org.apache.james.jmap.api.identity.{AllCustomIdentitiesDeleted, CustomIdentityCreated, CustomIdentityDeleted, CustomIdentityUpdated} import org.apache.james.jmap.api.model.{EmailAddress, EmailerName, HtmlSignature, Identity, IdentityId, IdentityName, MayDeleteIdentity, TextSignature} import org.apache.james.jmap.change.IdentityEventsSerializerTest._ -import org.apache.james.jmap.api.identity.{AllCustomIdentitiesDeleted, CustomIdentityCreated, CustomIdentityDeleted, CustomIdentityUpdated} import org.apache.james.json.JsonGenericSerializer import org.apache.james.json.JsonGenericSerializer.UnknownTypeException import org.assertj.core.api.Assertions.assertThatThrownBy --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
