Use Map directly in MetaFilter

Change-Id: I15545e9c7cdcbb8a913cbcf0eef7f8a2281de7a8
Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
This commit is contained in:
Lars Vogel 2020-04-22 14:37:20 +02:00
parent 54a2d48008
commit a0802ff9c2
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ public boolean add(Object o) {
@Override
public boolean contains(Object o) {
return m.keySet().contains(o);
return m.containsKey(o);
}
@Override