Skip to content

Commit 75e99a6

Browse files
vladakahornace
authored andcommitted
lower member visibility
1 parent 68076d3 commit 75e99a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/configuration/SuggesterConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ public class SuggesterConfig {
5252
public static final int TIME_THRESHOLD_DEFAULT = 2000; // 2 sec
5353
public static final int REBUILD_THREAD_POOL_PERCENT_NCPUS_DEFAULT = 80;
5454

55-
public static final Set<String> allowedProjectsDefault = null;
56-
public static final Set<String> allowedFieldsDefault = Set.of(
55+
private static final Set<String> allowedProjectsDefault = null;
56+
private static final Set<String> allowedFieldsDefault = Set.of(
5757
QueryBuilder.FULL,
5858
QueryBuilder.DEFS,
5959
QueryBuilder.REFS,
@@ -68,7 +68,7 @@ public class SuggesterConfig {
6868
private boolean enabled;
6969

7070
/**
71-
* Specifies how many results suggester should return at maximum.
71+
* Specifies maximum number of results suggester should return.
7272
*/
7373
private int maxResults;
7474

0 commit comments

Comments
 (0)