From 671a63fb4981180aa05ff54fa3cbea32ea70aaf1 Mon Sep 17 00:00:00 2001 From: Michael McCandless Date: Sun, 26 Sep 2010 12:44:26 +0000 Subject: [PATCH] remove dead code git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1001419 13f79535-47bb-0310-9956-ffa450edef68 --- .../index/codecs/standard/StandardPostingsReader.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lucene/src/java/org/apache/lucene/index/codecs/standard/StandardPostingsReader.java b/lucene/src/java/org/apache/lucene/index/codecs/standard/StandardPostingsReader.java index 483f1ba18fb..461b4fe5ab2 100644 --- a/lucene/src/java/org/apache/lucene/index/codecs/standard/StandardPostingsReader.java +++ b/lucene/src/java/org/apache/lucene/index/codecs/standard/StandardPostingsReader.java @@ -581,13 +581,6 @@ public class StandardPostingsReader extends PostingsReaderBase { return position; } - /** Returns length of payload at current position */ - public int getPayloadLength() { - assert lazyProxPointer == -1; - assert posPendingCount < freq; - return payloadLength; - } - /** Returns the payload at this position, or null if no * payload was indexed. */ public BytesRef getPayload() throws IOException {