Skip to content

Commit 9e7a7eb

Browse files
committed
remove extra paren
1 parent 865a485 commit 9e7a7eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/opensolaris/opengrok/index/Indexer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ public static void main(String argv[]) {
564564
}
565565
long stop = System.currentTimeMillis();
566566
String time_str = StringUtils.getReadableTime(stop - start);
567-
log.log(Level.INFO, "Total indexing time: {0})", time_str);
567+
log.log(Level.INFO, "Total indexing time: {0}", time_str);
568568
getInstance().sendToConfigHost(env, configHost);
569569
} catch (IndexerException ex) {
570570
log.log(Level.SEVERE, "Exception running indexer", ex);

0 commit comments

Comments
 (0)