You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by pl...@apache.org on 2015/01/09 22:44:19 UTC

incubator-tamaya git commit: TAMAYA-39 Removed not needed constant.

Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 671df88ec -> 0870a7267


TAMAYA-39 Removed not needed constant.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/0870a726
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/0870a726
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/0870a726

Branch: refs/heads/master
Commit: 0870a7267dc0c4e9dd1d10d059fd77ed00163455
Parents: 671df88
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Fri Jan 9 22:43:58 2015 +0100
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Fri Jan 9 22:43:58 2015 +0100

----------------------------------------------------------------------
 .../org/apache/tamaya/modules/json/JSONPropertySource.java     | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/0870a726/modules/json/src/main/java/org/apache/tamaya/modules/json/JSONPropertySource.java
----------------------------------------------------------------------
diff --git a/modules/json/src/main/java/org/apache/tamaya/modules/json/JSONPropertySource.java b/modules/json/src/main/java/org/apache/tamaya/modules/json/JSONPropertySource.java
index 6a1a11b..58cd248 100644
--- a/modules/json/src/main/java/org/apache/tamaya/modules/json/JSONPropertySource.java
+++ b/modules/json/src/main/java/org/apache/tamaya/modules/json/JSONPropertySource.java
@@ -37,12 +37,6 @@ import static java.lang.String.format;
 public class JSONPropertySource
     implements PropertySource {
 
-    /**
-     * Constant for the key which could be used to specify the priority
-     * of a property source in the JSON object directly.
-     */
-    public final static CharSequence TAMAYA_ORDINAL = "tamaya.ordinal";
-
     private int priority = DefaultOrdinal.FILE_PROPERTIES;
     private InputResource source;
     private HashMap<String, String> values;