Github user aledsage commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/859#discussion_r145066673
--- Diff:
core/src/main/java/org/apache/brooklyn/core/entity/EntityPredicates.java ---
@@ -488,11 +482,6 @@ public String toString() {
}
}
- /** @deprecated since 0.7.0 use {@link #isManaged()} */ @Deprecated
- public static <T> Predicate<Entity> managed() {
- return isManaged();
- }
-
/** @deprecated since 0.7.0 use {@link #isManaged()}, introduced to
allow deserialization of anonymous inner class */
@SuppressWarnings("unused") @Deprecated
private static <T> Predicate<Entity> managedOld() {
--- End diff --
As above: playing it safe in case someone has extremely old persisted state
(until we have a nicer way to walk users though detecting/fixing such problems).
---