Skip to content

Commit

Permalink
Restore internal FilterStore.fFilterMap field to un-break Tycho's
Browse files Browse the repository at this point in the history
api-analysis
  • Loading branch information
HannesWell committed Mar 17, 2024
1 parent cfc4302 commit 34978f3
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -23,7 +23,6 @@
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
Expand Down Expand Up @@ -67,7 +66,7 @@ public class FilterStore implements IApiFilterStore {
/**
* The mapping of filters for this store.
*/
protected Map<String, Set<IApiProblemFilter>> fFilterMap = null;
protected HashMap<String, Set<IApiProblemFilter>> fFilterMap = null;
/**
* The bundle component backing this store
*/
Expand Down

0 comments on commit 34978f3

Please sign in to comment.