Skip to content

Commit

Permalink
Pair added in LuceneSearchBackend
Browse files Browse the repository at this point in the history
  • Loading branch information
hmarkc committed Aug 30, 2021
1 parent cb1700d commit 6c320f2
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -425,4 +425,16 @@ public void cleanDeletedJobs(Progress progress) throws Exception {
}
}

}

class Pair<T, S, Q> {
public final T first;
public final S second;
public final Q third;

Pair(T first, S second, Q third) {
this.first = first;
this.second = second;
this.third = third;
}
}

0 comments on commit 6c320f2

Please sign in to comment.