commit | c4d819644e74e178007621496665923928d04664 | [log] [tgz] |
---|---|---|
author | Clement Escoffier <clement@apache.org> | Sat Dec 07 07:15:45 2013 +0000 |
committer | Clement Escoffier <clement@apache.org> | Sat Dec 07 07:15:45 2013 +0000 |
tree | f1068a6ea531165140aead5473a712e811187e4d | |
parent | 9c96cd2664c78069bb44fd96034f2532c4188bd9 [diff] |
Fix FELIX-4292. Set the architecture default value to true. git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1548801 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/manipulator/annotations/src/main/java/org/apache/felix/ipojo/annotations/Component.java b/ipojo/manipulator/annotations/src/main/java/org/apache/felix/ipojo/annotations/Component.java index 19834be..40f77e3 100644 --- a/ipojo/manipulator/annotations/src/main/java/org/apache/felix/ipojo/annotations/Component.java +++ b/ipojo/manipulator/annotations/src/main/java/org/apache/felix/ipojo/annotations/Component.java
@@ -50,9 +50,9 @@ /** * Enable / Disable the architecture exposition. - * Default : false + * Default : true */ - boolean architecture() default false; + boolean architecture() default true; /** * Set if the component is immediate. @@ -62,7 +62,7 @@ /** * Set if the component must propagate received configuration to provided services. - * default: false + * default: true */ boolean propagation() default true;