File tree 1 file changed +1
-7
lines changed
src/jdk.compiler/share/classes/com/sun/tools/javac/code
1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2005, 2022 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2005, 2023 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -349,12 +349,7 @@ public enum LintCategory {
349
349
RESTRICTED ("restricted" );
350
350
351
351
LintCategory (String option ) {
352
- this (option , false );
353
- }
354
-
355
- LintCategory (String option , boolean hidden ) {
356
352
this .option = option ;
357
- this .hidden = hidden ;
358
353
map .put (option , this );
359
354
}
360
355
@@ -363,7 +358,6 @@ static LintCategory get(String option) {
363
358
}
364
359
365
360
public final String option ;
366
- public final boolean hidden ;
367
361
}
368
362
369
363
/**
You can’t perform that action at this time.
0 commit comments