This is an automated email from the ASF dual-hosted git repository.
pottlinger pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-tamaya-extensions.git
The following commit(s) were added to refs/heads/master by this push:
new 8c05b85 TAMAYA-378: Align documentation to inject API interface
new c4196e8 Merge pull request #34 from acoburn/update_documentation
8c05b85 is described below
commit 8c05b852040ed6d4114149f88cf7461cd6b2619c
Author: Aaron Coburn <[email protected]>
AuthorDate: Sat Mar 9 09:06:12 2019 -0500
TAMAYA-378: Align documentation to inject API interface
---
.../src/main/java/org/apache/tamaya/inject/api/Config.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/modules/injection/injection-api/src/main/java/org/apache/tamaya/inject/api/Config.java
b/modules/injection/injection-api/src/main/java/org/apache/tamaya/inject/api/Config.java
index 5e6c811..8158634 100644
---
a/modules/injection/injection-api/src/main/java/org/apache/tamaya/inject/api/Config.java
+++
b/modules/injection/injection-api/src/main/java/org/apache/tamaya/inject/api/Config.java
@@ -65,7 +65,7 @@ import java.lang.reflect.Method;
* &ConfigSection("section1")
* public class ConfiguredItem {
*
- * &Config(key = {"b"}, fallbackKeys="[a.b.deprecated.keys]", "a"},
defaultValue = "myDefaultValue")
+ * &Config(key = {"b"}, alternateKeys={"[a.b.deprecated.keys]", "a"},
defaultValue = "myDefaultValue")
* private String aValue;
* }
* </pre>
@@ -83,7 +83,7 @@ import java.lang.reflect.Method;
*
* public class ConfiguredItem {
*
- * &Config(key = {"b"}, fallbackKeys={"[a.b.deprecated.keys]", "a"},
defaultValue = "myDefaultValue")
+ * &Config(key = {"b"}, alternateKeys={"[a.b.deprecated.keys]", "a"},
defaultValue = "myDefaultValue")
* private String aValue;
* }
* </pre>