File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
opengrok-indexer/src/main/java/org/opengrok/indexer/configuration
opengrok-web/src/main/webapp Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1177,7 +1177,7 @@ public void setCurrentIndexedCollapseThreshold(int currentIndexedCollapseThresho
1177
1177
this .currentIndexedCollapseThreshold = currentIndexedCollapseThreshold ;
1178
1178
}
1179
1179
1180
- public boolean getDisplayRepositories () {
1180
+ public boolean isDisplayRepositories () {
1181
1181
return this .displayRepositories ;
1182
1182
}
1183
1183
Original file line number Diff line number Diff line change @@ -1328,8 +1328,8 @@ public void setHistoryEnabled(boolean historyEnabled) {
1328
1328
syncWriteConfiguration (historyEnabled , Configuration ::setHistoryEnabled );
1329
1329
}
1330
1330
1331
- public boolean getDisplayRepositories () {
1332
- return syncReadConfiguration (Configuration ::getDisplayRepositories );
1331
+ public boolean isDisplayRepositories () {
1332
+ return syncReadConfiguration (Configuration ::isDisplayRepositories );
1333
1333
}
1334
1334
1335
1335
public void setDisplayRepositories (boolean displayRepositories ) {
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ include file="menu.jspf"
55
55
</header >
56
56
<div id =" results" >
57
57
<%= PageConfig . get(request). getEnv(). getIncludeFiles(). getBodyIncludeFileContent(false ) % >
58
- <% if (PageConfig . get(request). getEnv(). getDisplayRepositories ()) { % ><% @
58
+ <% if (PageConfig . get(request). getEnv(). isDisplayRepositories ()) { % ><% @
59
59
60
60
include file= " repos.jspf"
61
61
You can’t perform that action at this time.
0 commit comments