Moved collections, consul, etcd and hazelcast modules into extensions. Updated docs to match code.
Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/1f92cef9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/1f92cef9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/1f92cef9 Branch: refs/heads/master Commit: 1f92cef975e11a1261cf727b04f724246cd1c955 Parents: 606f8ec Author: Anatole Tresch <[email protected]> Authored: Thu Nov 8 00:26:29 2018 +0100 Committer: Anatole Tresch <[email protected]> Committed: Thu Nov 8 00:26:29 2018 +0100 ---------------------------------------------------------------------- code/api/src/main/java/org/apache/tamaya/spi/PropertyValue.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/1f92cef9/code/api/src/main/java/org/apache/tamaya/spi/PropertyValue.java ---------------------------------------------------------------------- diff --git a/code/api/src/main/java/org/apache/tamaya/spi/PropertyValue.java b/code/api/src/main/java/org/apache/tamaya/spi/PropertyValue.java index b0fd2ff..9381f5e 100644 --- a/code/api/src/main/java/org/apache/tamaya/spi/PropertyValue.java +++ b/code/api/src/main/java/org/apache/tamaya/spi/PropertyValue.java @@ -435,7 +435,7 @@ public class PropertyValue implements Serializable, Iterable<PropertyValue>{ public final PropertyValue setMeta(String key, Object value) { checkImmutable(); Objects.requireNonNull(key, "Meta key must be given."); - Objects.requireNonNull(value, "Meta createValue must be given."); + Objects.requireNonNull(value, "Meta value must be given."); if(!Objects.equals(this.metaEntries.get(key), value.toString())) { this.metaEntries.put(key, value.toString()); version.incrementAndGet();
