You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by an...@apache.org on 2016/02/11 20:36:18 UTC

incubator-tamaya git commit: TAMAYA-134 Added patch.

Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 904d1ece3 -> 0eb9b81a8


TAMAYA-134 Added patch.


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

Branch: refs/heads/master
Commit: 0eb9b81a8417360cca43ab9db8a4f007d407b2a3
Parents: 904d1ec
Author: anatole <an...@apache.org>
Authored: Thu Feb 11 20:36:05 2016 +0100
Committer: anatole <an...@apache.org>
Committed: Thu Feb 11 20:36:05 2016 +0100

----------------------------------------------------------------------
 .../main/java/org/apache/tamaya/spi/FilterContext.java | 13 +++++--------
 1 file changed, 5 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/0eb9b81a/code/api/src/main/java/org/apache/tamaya/spi/FilterContext.java
----------------------------------------------------------------------
diff --git a/code/api/src/main/java/org/apache/tamaya/spi/FilterContext.java b/code/api/src/main/java/org/apache/tamaya/spi/FilterContext.java
index 0cc4f5f..3c675c8 100644
--- a/code/api/src/main/java/org/apache/tamaya/spi/FilterContext.java
+++ b/code/api/src/main/java/org/apache/tamaya/spi/FilterContext.java
@@ -55,7 +55,7 @@ public class FilterContext {
      * control further aspects of the conversion.
      *
      * @return the key. This may be null in case where a default value has to be converted and no unique underlying
-     * key/value configuration is present..
+     * key/value configuration is present.
      */
     public String getKey() {
         return key;
@@ -75,10 +75,10 @@ public class FilterContext {
      * This map contains the following keys:
      * <ul>
      * <li>the original value <b>before</b> any filters were applied on it.</li>
-     * <li>all values starting with an {@code _<key>.}. for example {@code a.value}</li>
+     * <li>all values starting with an {@code _<key>.}, for example {@code a.value}
      * may have a map set with {@code a.value} (oringinal value), {@code _a.value.origin,
      * _a.value.type, etc}. The exact contents is determine by the {@link PropertySource}s
-     * active.
+     * active.</li>
      * </ul>
      * Also important to know is that this map given contains all the evaluated raw entries, regardless
      * of the filters that are later applied. This ensures that met-information required by one filter is
@@ -86,7 +86,7 @@ public class FilterContext {
      * key/value pairs, e.g. fir security reasons, by returning {@code null}, but the values in the raw map
      * passed as input to the filter process will not be affected by any such removal (but the final properties
      * returned are affected, of course).
-     * <p/>
+     * 
      * Finally, when a single property is accessed, e.g. by calling {@code Configuration.get(String)}.
      *
      * @return the configuration instance, or null.
@@ -98,10 +98,7 @@ public class FilterContext {
 
     @Override
     public String toString() {
-        return "FilterContext{" +
-                "key='" + key + '\'' +
-                ", configEntries=" + configEntries +
-                '}';
+        return "FilterContext{key='" + key + "', configEntries=" + configEntries + '}';
     }
 
 }