Skip to content

Commit 635a55a

Browse files
vladakahornace
authored andcommitted
make kwd package-private
1 parent 75e99a6 commit 635a55a

File tree

1 file changed

+3
-4
lines changed
  • opengrok-indexer/src/main/java/org/opengrok/indexer/analysis/c

1 file changed

+3
-4
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/analysis/c/CxxConsts.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919

2020
/*
21-
* Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved.
21+
* Copyright (c) 2008, 2021, Oracle and/or its affiliates. All rights reserved.
2222
*/
2323
package org.opengrok.indexer.analysis.c;
2424

@@ -30,10 +30,10 @@
3030
*/
3131
public class CxxConsts {
3232

33-
public static final Set<String> kwd = new HashSet<>();
33+
static final Set<String> kwd = new HashSet<>();
3434

3535
static {
36-
// Add all of the C keywords
36+
// Add all the C keywords.
3737
kwd.addAll(Consts.kwd);
3838

3939
// C++ keywords
@@ -67,5 +67,4 @@ public class CxxConsts {
6767

6868
private CxxConsts() {
6969
}
70-
7170
}

0 commit comments

Comments
 (0)