Skip to content

Commit ceb0290

Browse files
committedNov 22, 2023
8320447: Remove obsolete LintCategory.hidden
Reviewed-by: jjg
1 parent 98edb03 commit ceb0290

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
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/code/Lint.java

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -349,12 +349,7 @@ public enum LintCategory {
349349
RESTRICTED("restricted");
350350

351351
LintCategory(String option) {
352-
this(option, false);
353-
}
354-
355-
LintCategory(String option, boolean hidden) {
356352
this.option = option;
357-
this.hidden = hidden;
358353
map.put(option, this);
359354
}
360355

@@ -363,7 +358,6 @@ static LintCategory get(String option) {
363358
}
364359

365360
public final String option;
366-
public final boolean hidden;
367361
}
368362

369363
/**

0 commit comments

Comments
 (0)
Please sign in to comment.