Skip to content

Commit aeef436

Browse files
committed
remove reundant final modifier
1 parent 8a8542b commit aeef436

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/index/IndexerUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public static void enableProjects(final String host) throws
8080
.headers(getWebAppHeaders());
8181
final String enabled = request.get(String.class);
8282
if (!Boolean.parseBoolean(enabled)) {
83-
try (final Response r = request.put(Entity.text(Boolean.TRUE.toString()))) {
83+
try (Response r = request.put(Entity.text(Boolean.TRUE.toString()))) {
8484
if (r.getStatusInfo().getFamily() != Response.Status.Family.SUCCESSFUL) {
8585
throw new WebApplicationException(String.format("Unable to enable projects: %s",
8686
r.getStatusInfo().getReasonPhrase()), r.getStatus());

0 commit comments

Comments
 (0)