implement isPayloadAvailable (just return false, payloads unimplemented here), b/c it desn't compile without it.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@535361 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Doron Cohen 2007-05-04 19:40:14 +00:00
parent e7c06745f7
commit bcd57a9af0
1 changed files with 5 additions and 0 deletions

View File

@ -911,6 +911,11 @@ public class MemoryIndex {
throw new UnsupportedOperationException();
}
public boolean isPayloadAvailable() {
// unsuported
return false;
}
};
}