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 39F1517501 for ; Thu, 16 Apr 2015 13:08:32 +0000 (UTC) Received: (qmail 13723 invoked by uid 500); 16 Apr 2015 13:08:32 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 13662 invoked by uid 500); 16 Apr 2015 13:08:32 -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 13652 invoked by uid 99); 16 Apr 2015 13:08:32 -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, 16 Apr 2015 13:08:32 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C7BAAE109B; Thu, 16 Apr 2015 13:08:31 +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, 16 Apr 2015 13:08:31 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/2] cxf git commit: Fixing bug Repository: cxf Updated Branches: refs/heads/master 42b3ae5ec -> da352523c Fixing bug Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/4bc0c5e5 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/4bc0c5e5 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/4bc0c5e5 Branch: refs/heads/master Commit: 4bc0c5e52615dac9db94b6fdcd73065a48eb1411 Parents: 42b3ae5 Author: Colm O hEigeartaigh Authored: Thu Apr 16 14:00:51 2015 +0100 Committer: Colm O hEigeartaigh Committed: Thu Apr 16 14:00:51 2015 +0100 ---------------------------------------------------------------------- .../main/java/org/apache/cxf/rt/security/utils/SecurityUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/4bc0c5e5/rt/security/src/main/java/org/apache/cxf/rt/security/utils/SecurityUtils.java ---------------------------------------------------------------------- diff --git a/rt/security/src/main/java/org/apache/cxf/rt/security/utils/SecurityUtils.java b/rt/security/src/main/java/org/apache/cxf/rt/security/utils/SecurityUtils.java index 2c040fc..a7a7148 100644 --- a/rt/security/src/main/java/org/apache/cxf/rt/security/utils/SecurityUtils.java +++ b/rt/security/src/main/java/org/apache/cxf/rt/security/utils/SecurityUtils.java @@ -149,7 +149,7 @@ public final class SecurityUtils { if (url != null) { Properties properties = new Properties(); try { - InputStream ins = ((URL)o).openStream(); + InputStream ins = url.openStream(); properties.load(ins); ins.close(); } catch (IOException e) {