Adds Javadoc for DumpLog#split

This commit is contained in:
Fuzzlemann 2017-08-11 18:04:54 +02:00
parent bb573d0b2b
commit e81f92d0d0

View File

@ -165,6 +165,11 @@ public class DumpLog {
}
}
/**
* Splits the content of the DumpLog into parts
*
* @return The splitted content
*/
private Iterable<String> split() {
return Splitter.fixedLength(390000).split(this.toString());
}