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 25E8C200BA9 for ; Sun, 23 Oct 2016 22:36:19 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2488F160B03; Sun, 23 Oct 2016 20:36:19 +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 52987160B01 for ; Sun, 23 Oct 2016 22:36:18 +0200 (CEST) Received: (qmail 48949 invoked by uid 500); 23 Oct 2016 20:36:17 -0000 Mailing-List: contact commits-help@tamaya.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tamaya.incubator.apache.org Delivered-To: mailing list commits@tamaya.incubator.apache.org Received: (qmail 48940 invoked by uid 99); 23 Oct 2016 20:36:17 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 23 Oct 2016 20:36:17 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 06B46C1EDB for ; Sun, 23 Oct 2016 20:36:17 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -6.219 X-Spam-Level: X-Spam-Status: No, score=-6.219 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id 7w2vieYsXaSq for ; Sun, 23 Oct 2016 20:36:16 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with SMTP id E889C5FCEC for ; Sun, 23 Oct 2016 20:36:15 +0000 (UTC) Received: (qmail 48727 invoked by uid 99); 23 Oct 2016 20:36:15 -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; Sun, 23 Oct 2016 20:36:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2627AF15AF; Sun, 23 Oct 2016 20:36:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: plexus@apache.org To: commits@tamaya.incubator.apache.org Date: Sun, 23 Oct 2016 20:36:58 -0000 Message-Id: In-Reply-To: <7ca0cf0fa0b84d2380a7ce87aab8f023@git.apache.org> References: <7ca0cf0fa0b84d2380a7ce87aab8f023@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [46/50] [abbrv] incubator-tamaya-extensions git commit: Fixed quality issues. archived-at: Sun, 23 Oct 2016 20:36:19 -0000 Fixed quality issues. Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/commit/09c1ad98 Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/tree/09c1ad98 Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/diff/09c1ad98 Branch: refs/heads/old_master Commit: 09c1ad988041045c624772612a96c9891a7344c3 Parents: 537d61f Author: anatole Authored: Sat Apr 30 20:44:03 2016 +0200 Committer: Oliver B. Fischer Committed: Fri Sep 30 21:29:37 2016 +0200 ---------------------------------------------------------------------- src/main/java/org/apache/tamaya/filter/ConfigurationFilter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/09c1ad98/src/main/java/org/apache/tamaya/filter/ConfigurationFilter.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/tamaya/filter/ConfigurationFilter.java b/src/main/java/org/apache/tamaya/filter/ConfigurationFilter.java index b33ff27..c2739a1 100644 --- a/src/main/java/org/apache/tamaya/filter/ConfigurationFilter.java +++ b/src/main/java/org/apache/tamaya/filter/ConfigurationFilter.java @@ -107,7 +107,7 @@ public final class ConfigurationFilter implements PropertyFilter{ @Override public String filterProperty(String valueToBeFiltered, FilterContext context) { - if(!context.isSinglePropertyScoped()){ + if(context.isSinglePropertyScoped()){ for(PropertyFilter pred: THREADED_SINGLE_FILTERS.get().getFilters()){ valueToBeFiltered = pred.filterProperty(valueToBeFiltered, context); }