We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c850ff commit 93e5404Copy full SHA for 93e5404
1 file changed
src/main/java/com/imsweb/seerapi/client/staging/SchemaLookup.java
@@ -68,7 +68,7 @@ public String getInput(String key) {
68
* @param value value of input
69
*/
70
public void setInput(String key, String value) {
71
- if (getAllowedKeys() != null && !getAllowedKeys().contains(key))
+ if (!getAllowedKeys().isEmpty() && !getAllowedKeys().contains(key))
72
throw new IllegalStateException("The input key " + key + " is not allowed for lookups");
73
74
_inputs.put(key, value);
0 commit comments