Last active
February 3, 2020 20:24
-
-
Save oshai/ec2fcf0fa097ef61a8a9c1adf279c2a9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static boolean isSupported(String var0) { | |
return supportedParameters().contains(var0); | |
} | |
public static Set supportedParameters() { | |
if (supportedParams == null) { | |
supportedParams = new TreeSet(); | |
supportedParams.add("a"); | |
supportedParams.add("rf"); | |
supportedParams.add("f"); | |
supportedParams.add("es"); | |
supportedParams.add("b"); | |
supportedParams.add("datum"); | |
} | |
return supportedParams; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment