This is an automated email from the ASF dual-hosted git repository. rcordier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit f4e8cdafe1c23ffa7619dd5cc1846f183849b3d2 Author: Matthieu Baechler <[email protected]> AuthorDate: Fri Feb 28 18:05:08 2020 +0100 [Refactoring] replace Guava Function by java Function --- .../src/main/java/org/apache/james/mock/smtp/server/model/Operator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/mailet/mock-smtp-server/src/main/java/org/apache/james/mock/smtp/server/model/Operator.java b/server/mailet/mock-smtp-server/src/main/java/org/apache/james/mock/smtp/server/model/Operator.java index 6e44451..6999a50 100644 --- a/server/mailet/mock-smtp-server/src/main/java/org/apache/james/mock/smtp/server/model/Operator.java +++ b/server/mailet/mock-smtp-server/src/main/java/org/apache/james/mock/smtp/server/model/Operator.java @@ -21,10 +21,10 @@ package org.apache.james.mock.smtp.server.model; import java.util.Arrays; import java.util.Optional; +import java.util.function.Function; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonValue; -import com.google.common.base.Function; import com.google.common.base.Preconditions; public interface Operator { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
