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 2015/01/03 12:59:11 UTC

[02/27] incubator-tamaya git commit: TAMAYA-42: Fixed Javadoc.

TAMAYA-42: Fixed Javadoc.


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

Branch: refs/heads/master
Commit: 5f58e7184190693047bac7ee475e61aee9470f88
Parents: cdb4d13
Author: anatole <an...@apache.org>
Authored: Sat Jan 3 09:42:31 2015 +0100
Committer: anatole <an...@apache.org>
Committed: Sat Jan 3 09:42:31 2015 +0100

----------------------------------------------------------------------
 .../main/java/org/apache/tamaya/spi/ConfigurationContext.java  | 6 +++---
 api/src/test/java/org/apache/tamaya/TestConfiguration.java     | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/5f58e718/api/src/main/java/org/apache/tamaya/spi/ConfigurationContext.java
----------------------------------------------------------------------
diff --git a/api/src/main/java/org/apache/tamaya/spi/ConfigurationContext.java b/api/src/main/java/org/apache/tamaya/spi/ConfigurationContext.java
index 3dc0daa..21d08da 100644
--- a/api/src/main/java/org/apache/tamaya/spi/ConfigurationContext.java
+++ b/api/src/main/java/org/apache/tamaya/spi/ConfigurationContext.java
@@ -40,11 +40,11 @@ public interface ConfigurationContext {
 
     /**
      * This method returns the current list of registered PropertySources ordered via their ordinal.
-     * PropertySources with a lower ordinal come first. The PropertySource with the
-     * highest ordinal comes last.
+     * PropertySources with a lower ordinal come last. The PropertySource with the
+     * highest ordinal comes first.
      * If two PropertySources have the same ordinal number they will get sorted
      * using their class name just to ensure the user at least gets the same ordering
-     * after a JVM restart.
+     * after a JVM restart, hereby names before are added last.
      * PropertySources are loaded when this method is called the first time, which basically is
      * when the first time configuration is accessed.
      *

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/5f58e718/api/src/test/java/org/apache/tamaya/TestConfiguration.java
----------------------------------------------------------------------
diff --git a/api/src/test/java/org/apache/tamaya/TestConfiguration.java b/api/src/test/java/org/apache/tamaya/TestConfiguration.java
index 5a33c53..122d671 100644
--- a/api/src/test/java/org/apache/tamaya/TestConfiguration.java
+++ b/api/src/test/java/org/apache/tamaya/TestConfiguration.java
@@ -21,7 +21,7 @@ package org.apache.tamaya;
 import java.util.Optional;
 
 /**
- * Test Configuration class, that is used to test the default methods provided by the API.
+ * Test Configuration class, that is used to testdata the default methods provided by the API.
  */
 public class TestConfiguration implements Configuration{