Removing printlns
Project: http://git-wip-us.apache.org/repos/asf/cxf-fediz/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf-fediz/commit/80fd043f Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/80fd043f Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/80fd043f Branch: refs/heads/1.2.x-fixes Commit: 80fd043f89b43b63346a0b4accad29fdc8e56d66 Parents: 9009c94 Author: Colm O hEigeartaigh <[email protected]> Authored: Thu Apr 13 13:43:46 2017 +0100 Committer: Colm O hEigeartaigh <[email protected]> Committed: Thu Apr 13 14:50:15 2017 +0100 ---------------------------------------------------------------------- .../cxf/fediz/service/idp/beans/EndpointAddressValidator.java | 4 ---- 1 file changed, 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/80fd043f/services/idp/src/main/java/org/apache/cxf/fediz/service/idp/beans/EndpointAddressValidator.java ---------------------------------------------------------------------- diff --git a/services/idp/src/main/java/org/apache/cxf/fediz/service/idp/beans/EndpointAddressValidator.java b/services/idp/src/main/java/org/apache/cxf/fediz/service/idp/beans/EndpointAddressValidator.java index 536a2e6..83299cb 100644 --- a/services/idp/src/main/java/org/apache/cxf/fediz/service/idp/beans/EndpointAddressValidator.java +++ b/services/idp/src/main/java/org/apache/cxf/fediz/service/idp/beans/EndpointAddressValidator.java @@ -55,7 +55,6 @@ public class EndpointAddressValidator { public boolean isValidSignoutAddress(RequestContext context, String endpointAddress, String realm) throws Exception { - System.out.println("EA: " + endpointAddress + " " + realm); if (endpointAddress == null) { return true; } @@ -99,7 +98,6 @@ public class EndpointAddressValidator { } private boolean validateSignoutEndpointAddress(Application serviceConfig, String endpointAddress) { - System.out.println("HERE"); if (serviceConfig.getLogoutEndpoint() == null && serviceConfig.getCompiledLogoutEndpointConstraint() == null) { LOG.error("Either the 'logoutEndpoint' or the 'logoutEndpointConstraint' " @@ -120,8 +118,6 @@ public class EndpointAddressValidator { } } - System.out.println("RET FALSE"); - return false; }
