Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B39FF200C64 for ; Thu, 13 Apr 2017 17:01:13 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B244E160B98; Thu, 13 Apr 2017 15:01:13 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 06410160BAA for ; Thu, 13 Apr 2017 17:01:12 +0200 (CEST) Received: (qmail 51490 invoked by uid 500); 13 Apr 2017 15:01:12 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 51227 invoked by uid 99); 13 Apr 2017 15:01:10 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Apr 2017 15:01:10 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D6BEAE00B4; Thu, 13 Apr 2017 15:01:09 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: coheigea@apache.org To: commits@cxf.apache.org Date: Thu, 13 Apr 2017 15:01:11 -0000 Message-Id: <83a45161c71247f2ae9422d50ba97d99@git.apache.org> In-Reply-To: <95b6a3a7b0e743a4bef226a2d12e0a5a@git.apache.org> References: <95b6a3a7b0e743a4bef226a2d12e0a5a@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/5] cxf-fediz git commit: Removing printlns archived-at: Thu, 13 Apr 2017 15:01:13 -0000 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 Authored: Thu Apr 13 13:43:46 2017 +0100 Committer: Colm O hEigeartaigh 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; }