converting postConstruct to init
Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/02339d92 Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/02339d92 Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/02339d92 Branch: refs/heads/0.5.0 Commit: 02339d92cd09806d4dc131f0e541502c12e5459e Parents: bd2256f Author: Alex Heneveld <[email protected]> Authored: Mon Apr 1 12:30:26 2013 +0100 Committer: Alex Heneveld <[email protected]> Committed: Mon Apr 1 12:41:41 2013 +0100 ---------------------------------------------------------------------- core/src/main/java/brooklyn/entity/basic/AbstractEntity.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/02339d92/core/src/main/java/brooklyn/entity/basic/AbstractEntity.groovy ---------------------------------------------------------------------- diff --git a/core/src/main/java/brooklyn/entity/basic/AbstractEntity.groovy b/core/src/main/java/brooklyn/entity/basic/AbstractEntity.groovy index 5f4117f..c9ff73a 100644 --- a/core/src/main/java/brooklyn/entity/basic/AbstractEntity.groovy +++ b/core/src/main/java/brooklyn/entity/basic/AbstractEntity.groovy @@ -78,7 +78,7 @@ import com.google.common.collect.Maps * to this entity (except for drivers/policies that are attached to the entity, which can be * given a reference to this entity itself). * <li>Call {@link #configure(Map)} and then {@link #setConfig(ConfigKey, Object)} - * <li>Call {@link #postConstruct()} + * <li>Call {@link #init()} * <li>Call {@link #addPolicy()} (for any policies defined in the {@link EntitySpec}) * <li>Call {@link #setParent(Entity)}, if a parent is specified in the {@link EntitySpec} * </ol>
