We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75e99a6 commit 635a55aCopy full SHA for 635a55a
opengrok-indexer/src/main/java/org/opengrok/indexer/analysis/c/CxxConsts.java
@@ -18,7 +18,7 @@
18
*/
19
20
/*
21
- * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2008, 2021, Oracle and/or its affiliates. All rights reserved.
22
23
package org.opengrok.indexer.analysis.c;
24
@@ -30,10 +30,10 @@
30
31
public class CxxConsts {
32
33
- public static final Set<String> kwd = new HashSet<>();
+ static final Set<String> kwd = new HashSet<>();
34
35
static {
36
- // Add all of the C keywords
+ // Add all the C keywords.
37
kwd.addAll(Consts.kwd);
38
39
// C++ keywords
@@ -67,5 +67,4 @@ public class CxxConsts {
67
68
private CxxConsts() {
69
}
70
-
71
0 commit comments