HBASE-1432 LuceneDocumentWrapper is not public
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@775730 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5465455602
commit
755ea927b4
|
@ -253,6 +253,7 @@ Release 0.20.0 - Unreleased
|
|||
HBASE-1394 Uploads sometimes fall to 0 requests/second (Binding up on
|
||||
HLog#append?)
|
||||
HBASE-1429 Allow passing of a configuration object to HTablePool
|
||||
HBASE-1432 LuceneDocumentWrapper is not public
|
||||
|
||||
OPTIMIZATIONS
|
||||
HBASE-1412 Change values for delete column and column family in KeyValue
|
||||
|
|
|
@ -28,8 +28,8 @@ import org.apache.lucene.document.Document;
|
|||
* A utility class used to pass a lucene document from reduce to OutputFormat.
|
||||
* It doesn't really serialize/deserialize a lucene document.
|
||||
*/
|
||||
class LuceneDocumentWrapper implements Writable {
|
||||
private Document doc;
|
||||
public class LuceneDocumentWrapper implements Writable {
|
||||
protected Document doc;
|
||||
|
||||
/**
|
||||
* @param doc
|
||||
|
|
Loading…
Reference in New Issue