Github user tbouron commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/859#discussion_r144662800
--- Diff:
core/src/main/java/org/apache/brooklyn/core/entity/EntityPredicates.java ---
@@ -454,12 +454,6 @@ public String toString() {
}
}
- /** @deprecated since 0.7.0 use {@link #locationsIncludes(Location)} */
- @Deprecated
- public static <T> Predicate<Entity> withLocation(final Location
location) {
- return locationsIncludes(location);
- }
-
/** @deprecated since 0.7.0 use {@link #locationsIncludes(Location)},
introduced to allow deserialization of anonymous inner class */
@SuppressWarnings("unused") @Deprecated
private static <T> Predicate<Entity> withLocationOld(final Location
location) {
--- End diff --
Can we remove this one? Don't think it is use for rebind
---