Make lessThan() implementation non-final, fixing bug #34028.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@158633 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Doug Cutting 2005-03-22 18:02:09 +00:00
parent b25ded1337
commit f654321707
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ extends PriorityQueue {
* @param b ScoreDoc
* @return <code>true</code> if document <code>a</code> should be sorted after document <code>b</code>.
*/
protected final boolean lessThan (final Object a, final Object b) {
protected boolean lessThan (final Object a, final Object b) {
final ScoreDoc docA = (ScoreDoc) a;
final ScoreDoc docB = (ScoreDoc) b;