提交 051d3708 authored 作者: Thomas Mueller's avatar Thomas Mueller

Simplify testing

上级 b7086595
...@@ -29,57 +29,57 @@ public class Chunk { ...@@ -29,57 +29,57 @@ public class Chunk {
/** /**
* The chunk id. * The chunk id.
*/ */
final int id; public final int id;
/** /**
* The start position within the file. * The start position within the file.
*/ */
long start; public long start;
/** /**
* The length in bytes. * The length in bytes.
*/ */
int length; public int length;
/** /**
* The total number of pages in this chunk. * The total number of pages in this chunk.
*/ */
int pageCount; public int pageCount;
/** /**
* The number of pages still alive. * The number of pages still alive.
*/ */
int pageCountLive; public int pageCountLive;
/** /**
* The sum of the max length of all pages. * The sum of the max length of all pages.
*/ */
long maxLength; public long maxLength;
/** /**
* The sum of the max length of all pages that are in use. * The sum of the max length of all pages that are in use.
*/ */
long maxLengthLive; public long maxLengthLive;
/** /**
* The garbage collection priority. * The garbage collection priority.
*/ */
int collectPriority; public int collectPriority;
/** /**
* The position of the meta root. * The position of the meta root.
*/ */
long metaRootPos; public long metaRootPos;
/** /**
* The version stored in this chunk. * The version stored in this chunk.
*/ */
long version; public long version;
/** /**
* When this chunk was created, in milliseconds after the store was created. * When this chunk was created, in milliseconds after the store was created.
*/ */
long time; public long time;
Chunk(int id) { Chunk(int id) {
this.id = id; this.id = id;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论