You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by bt...@apache.org on 2019/11/07 06:44:33 UTC

[james-project] 02/12: [Refactoring] calling super() when only parent is Object is pointless

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 e7ef562cad58808346c14f0efcd9c4f21c7cebe9
Author: Matthieu Baechler <ma...@apache.org>
AuthorDate: Wed Nov 6 15:17:58 2019 +0100

    [Refactoring] calling super() when only parent is Object is pointless
---
 .../james/imap/message/response/AbstractStatusResponseFactory.java       | 1 -
 1 file changed, 1 deletion(-)

diff --git a/protocols/imap/src/main/java/org/apache/james/imap/message/response/AbstractStatusResponseFactory.java b/protocols/imap/src/main/java/org/apache/james/imap/message/response/AbstractStatusResponseFactory.java
index 9bc2098..41b685e 100644
--- a/protocols/imap/src/main/java/org/apache/james/imap/message/response/AbstractStatusResponseFactory.java
+++ b/protocols/imap/src/main/java/org/apache/james/imap/message/response/AbstractStatusResponseFactory.java
@@ -28,7 +28,6 @@ import org.apache.james.imap.api.message.response.StatusResponseFactory;
 public abstract class AbstractStatusResponseFactory implements StatusResponseFactory {
 
     AbstractStatusResponseFactory() {
-        super();
     }
 
     protected abstract StatusResponse createResponse(StatusResponse.Type type, String tag, ImapCommand command, HumanReadableText displayTextKey, ResponseCode code);


---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org