mirror of https://github.com/apache/lucene.git
add toString() method
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1491299 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
12dd8014dd
commit
7f90c7f8ea
|
@ -213,6 +213,11 @@ public class PackedInts {
|
||||||
this.format = format;
|
this.format = format;
|
||||||
this.bitsPerValue = bitsPerValue;
|
this.bitsPerValue = bitsPerValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "FormatAndBits(format=" + format + " bitsPerValue=" + bitsPerValue + ")";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue