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:
Robert Muir 2011-11-26 14:02:21 +00:00
parent 18e1ec2b9e
commit 9528a76608
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ import java.util.Comparator;
* @lucene.internal
*/
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 int offset;
public int length;