Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 035C4EEA9 for ; Mon, 4 Feb 2013 14:37:05 +0000 (UTC) Received: (qmail 85953 invoked by uid 500); 4 Feb 2013 14:35:53 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 84888 invoked by uid 500); 4 Feb 2013 14:35:48 -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 81876 invoked by uid 99); 4 Feb 2013 14:33:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Feb 2013 14:33:26 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Feb 2013 14:33:25 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 9B16B2388A68; Mon, 4 Feb 2013 14:33:06 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1442136 - /cxf/branches/2.6.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/TrustDecisionUtil.java Date: Mon, 04 Feb 2013 14:33:06 -0000 To: commits@cxf.apache.org From: ffang@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130204143306.9B16B2388A68@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ffang Date: Mon Feb 4 14:33:06 2013 New Revision: 1442136 URL: http://svn.apache.org/viewvc?rev=1442136&view=rev Log: [CXF-4803]add {} ensure operator sequence is correct Modified: cxf/branches/2.6.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/TrustDecisionUtil.java Modified: cxf/branches/2.6.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/TrustDecisionUtil.java URL: http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/TrustDecisionUtil.java?rev=1442136&r1=1442135&r2=1442136&view=diff ============================================================================== --- cxf/branches/2.6.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/TrustDecisionUtil.java (original) +++ cxf/branches/2.6.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/TrustDecisionUtil.java Mon Feb 4 14:33:06 2013 @@ -92,7 +92,7 @@ final class TrustDecisionUtil { connection.disconnect(); if (LOG.isLoggable(Level.FINE)) { LOG.log(Level.FINE, "Trust Decider " - + trustDecider != null ? trustDecider.getLogicalName() : decider2.getLogicalName() + + (trustDecider != null ? trustDecider.getLogicalName() : decider2.getLogicalName()) + " considers Conduit " + conduitName + " untrusted.", untrustedEx);