You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2017/04/13 12:43:56 UTC

[2/2] cxf-fediz git commit: Removing printlns

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/6341ca76
Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/6341ca76
Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/6341ca76

Branch: refs/heads/1.3.x-fixes
Commit: 6341ca762ebe2f00d993d539b8947470626fbb31
Parents: 314791d
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Thu Apr 13 13:43:46 2017 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Thu Apr 13 13:43:46 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/6341ca76/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;
     }