Repository: cxf-fediz Updated Branches: refs/heads/master 978a89e25 -> 518aab741
Fix Checkstyle errors Project: http://git-wip-us.apache.org/repos/asf/cxf-fediz/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf-fediz/commit/518aab74 Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/518aab74 Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/518aab74 Branch: refs/heads/master Commit: 518aab74131a41ec4112393dbf30a5d8f88fc58c Parents: 978a89e Author: Jan Bernhardt <[email protected]> Authored: Mon Mar 2 10:30:32 2015 +0100 Committer: Jan Bernhardt <[email protected]> Committed: Mon Mar 2 10:30:32 2015 +0100 ---------------------------------------------------------------------- .../cxf/fediz/core/processor/FedizRequest.java | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/518aab74/plugins/core/src/main/java/org/apache/cxf/fediz/core/processor/FedizRequest.java ---------------------------------------------------------------------- diff --git a/plugins/core/src/main/java/org/apache/cxf/fediz/core/processor/FedizRequest.java b/plugins/core/src/main/java/org/apache/cxf/fediz/core/processor/FedizRequest.java index 66fb396..bce07ee 100644 --- a/plugins/core/src/main/java/org/apache/cxf/fediz/core/processor/FedizRequest.java +++ b/plugins/core/src/main/java/org/apache/cxf/fediz/core/processor/FedizRequest.java @@ -21,7 +21,6 @@ package org.apache.cxf.fediz.core.processor; import java.io.Serializable; import java.security.cert.Certificate; -import java.util.Arrays; import javax.servlet.http.HttpServletRequest; @@ -81,17 +80,5 @@ public class FedizRequest implements Serializable { public void setRequestState(RequestState requestState) { this.requestState = requestState; } - - @Override - public String toString() { - return "FedizRequest{" + - "action='" + action + '\'' + - ", responseToken='" + (responseToken == null ? null : responseToken.substring(0,15) + "..." ) + '\'' + - ", state='" + state + '\'' + - ", freshness='" + freshness + '\'' + - ", certs=" + (certs == null ? 0 : certs.length) + - ", request=" + request + '\'' + - ", requestState=" + requestState + '\'' + - '}'; - } + }
