mirror of https://github.com/apache/lucene.git
add toString method
This commit is contained in:
parent
0dc1cf5ddd
commit
6c02a5323a
|
@ -38,5 +38,10 @@ public class FileMetaData {
|
|||
this.length = length;
|
||||
this.checksum = checksum;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "FileMetaData(length=" + length + ")";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue