mirror of https://github.com/apache/lucene.git
LUCENE-3590: make public for consistency with IntsRef and BytesRef
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1206437 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
18e1ec2b9e
commit
9528a76608
|
@ -26,7 +26,7 @@ import java.util.Comparator;
|
||||||
* @lucene.internal
|
* @lucene.internal
|
||||||
*/
|
*/
|
||||||
public final class CharsRef implements Comparable<CharsRef>, CharSequence, Cloneable {
|
public final class CharsRef implements Comparable<CharsRef>, CharSequence, Cloneable {
|
||||||
private static final char[] EMPTY_CHARS = new char[0];
|
public static final char[] EMPTY_CHARS = new char[0];
|
||||||
public char[] chars;
|
public char[] chars;
|
||||||
public int offset;
|
public int offset;
|
||||||
public int length;
|
public int length;
|
||||||
|
|
Loading…
Reference in New Issue