anyResourceId was actually filtering on any resource type instead

This commit is contained in:
Andrew Bayer 2013-02-22 16:04:46 -08:00 committed by Adrian Cole
parent ab09ff45b4
commit b5b6ac2e8f
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ public class TagFilterBuilder extends ImmutableMultimap.Builder<String, String>
}
public TagFilterBuilder anyResourceId() {
return putAll(RESOURCE_TYPE, ImmutableSet.<String> of());
return putAll(RESOURCE_ID, ImmutableSet.<String> of());
}
public TagFilterBuilder resourceType(String resourceType) {