Skip to content

Commit 48de89d

Browse files
author
Vladimir Kotal
committed
better variable naming
1 parent ae56707 commit 48de89d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -278,9 +278,9 @@ public History getHistory(File file, boolean withFiles, boolean ui)
278278
public InputStream getRevision(String parent, String basename, String rev) {
279279
InputStream ret = null;
280280

281-
Repository rep = getRepository(new File(parent));
282-
if (rep != null) {
283-
ret = rep.getHistoryGet(parent, basename, rev);
281+
Repository repo = getRepository(new File(parent));
282+
if (repo != null) {
283+
ret = repo.getHistoryGet(parent, basename, rev);
284284
}
285285
return ret;
286286
}

0 commit comments

Comments
 (0)