From 47b755db5ec896725038c45d8d6143c0f8821e8b Mon Sep 17 00:00:00 2001 From: Ben Culkin Date: Fri, 25 Sep 2020 19:04:55 -0400 Subject: Warning cleanup Take care of some various warnings that were occuring --- base/src/main/java/bjc/utils/ioutils/SimpleProperties.java | 4 ---- 1 file changed, 4 deletions(-) (limited to 'base/src/main/java/bjc/utils/ioutils/SimpleProperties.java') diff --git a/base/src/main/java/bjc/utils/ioutils/SimpleProperties.java b/base/src/main/java/bjc/utils/ioutils/SimpleProperties.java index e035894..754ed45 100644 --- a/base/src/main/java/bjc/utils/ioutils/SimpleProperties.java +++ b/base/src/main/java/bjc/utils/ioutils/SimpleProperties.java @@ -170,19 +170,16 @@ public class SimpleProperties implements Map { return props.isEmpty(); } - @SuppressWarnings("unlikely-arg-type") @Override public boolean containsKey(final Object key) { return props.containsKey(key); } - @SuppressWarnings("unlikely-arg-type") @Override public boolean containsValue(final Object value) { return props.containsValue(value); } - @SuppressWarnings("unlikely-arg-type") @Override public String get(final Object key) { return props.get(key); @@ -193,7 +190,6 @@ public class SimpleProperties implements Map { return props.put(key, value); } - @SuppressWarnings("unlikely-arg-type") @Override public String remove(final Object key) { return props.remove(key); -- cgit v1.2.3