Skip to content

Commit ea4a1b6

Browse files
author
S L
committed
removing static modifier
1 parent e1cd88f commit ea4a1b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/pl/project13/jgit/DescribeCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ private int distanceBetween(@NotNull Repository repo, @NotNull RevCommit child,
476476
}
477477
}
478478

479-
private static void seeAllParents(@NotNull RevWalk revWalk, RevCommit child, @NotNull Set<ObjectId> seen) throws IOException {
479+
private void seeAllParents(@NotNull RevWalk revWalk, RevCommit child, @NotNull Set<ObjectId> seen) throws IOException {
480480
Queue<RevCommit> q = newLinkedList();
481481
q.add(child);
482482

0 commit comments

Comments
 (0)