提交 69a1a3fe authored 作者: Jacek Ławrynowicz's avatar Jacek Ławrynowicz

cleanup - redundant final on static methods

上级 863293f5
......@@ -30,7 +30,7 @@ public class ValueEnum extends ValueEnumBase {
*
* @param enumerators the enumerators
*/
public static final void check(final String[] enumerators) {
public static void check(final String[] enumerators) {
switch (validate(enumerators)) {
case VALID:
return;
......@@ -45,7 +45,7 @@ public class ValueEnum extends ValueEnumBase {
}
}
private static final void check(final String[] enumerators, final Value value) {
private static void check(final String[] enumerators, final Value value) {
check(enumerators);
if (validate(enumerators, value) != Validation.VALID) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论