Skip to content

Commit 6e4cba9

Browse files
Vladimir Kotalahornace
authored andcommitted
join the lines for readability
1 parent 4687b0b commit 6e4cba9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/history/Repository.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,7 @@ History getHistory(File file, String sinceRevision) throws HistoryException {
186186
void removeAndVerifyOldestChangeset(List<HistoryEntry> entries,
187187
String revision)
188188
throws HistoryException {
189-
HistoryEntry entry
190-
= entries.isEmpty() ? null : entries.remove(entries.size() - 1);
189+
HistoryEntry entry = entries.isEmpty() ? null : entries.remove(entries.size() - 1);
191190

192191
// TODO We should check more thoroughly that the changeset is the one
193192
// we expected it to be, since some SCMs may change the revision

0 commit comments

Comments
 (0)