Skip to content

Commit

Permalink
Explicit generic args needed by our dumb build server?
Browse files Browse the repository at this point in the history
  • Loading branch information
Ray J. Greenwell committed Jan 6, 2016
1 parent a37d4e1 commit 609b95a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ protected void updateModel ()
if (_additionalFilter == null) {
curFilter = _filter;
} else {
curFilter = Predicates.and(_filter, _additionalFilter.get());
curFilter = Predicates.<ManagedConfig>and(_filter, _additionalFilter.get());
}
for (ConfigGroup<ManagedConfig> group : _groups) {
for (ManagedConfig config : Iterables.filter(group.getRawConfigs(), curFilter)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ protected Predicate<? super ManagedConfig> createFilter ()
if (_predicates == null) {
return _filter;
}
Predicate<? super ManagedConfig> combined = Predicates.and(_predicates);
Predicate<? super ManagedConfig> combined = Predicates.<ManagedConfig>and(_predicates);
if (_filter != null) {
combined = Predicates.and(_filter, combined);
combined = Predicates.<ManagedConfig>and(_filter, combined);
}
return combined;
}
Expand Down

0 comments on commit 609b95a

Please sign in to comment.