提交 7974fd2a authored 作者: noelgrandin's avatar noelgrandin

add comments

上级 5ff26c01
...@@ -155,7 +155,7 @@ public class Page { ...@@ -155,7 +155,7 @@ public class Page {
/** /**
* Read a page. * Read a page.
* *
* @param file the file * @param fileStore the file store
* @param map the map * @param map the map
* @param pos the page position * @param pos the page position
* @param filePos the position in the file * @param filePos the position in the file
......
...@@ -201,7 +201,7 @@ public class MultiDimension implements Comparator<long[]> { ...@@ -201,7 +201,7 @@ public class MultiDimension implements Comparator<long[]> {
* *
* @param min the minimum value * @param min the minimum value
* @param max the maximum value * @param max the maximum value
* @return the list of ranges * @return the list of ranges (low,high pairs)
*/ */
private long[][] getMortonRanges(int[] min, int[] max) { private long[][] getMortonRanges(int[] min, int[] max) {
int len = min.length; int len = min.length;
...@@ -236,8 +236,8 @@ public class MultiDimension implements Comparator<long[]> { ...@@ -236,8 +236,8 @@ public class MultiDimension implements Comparator<long[]> {
/** /**
* Combine entries if the size of the list is too large. * Combine entries if the size of the list is too large.
* *
* @param list the size of the list * @param list list of pairs(low,high)
* @param total * @param total product of the gap lengths
*/ */
private void combineEntries(ArrayList<long[]> list, int total) { private void combineEntries(ArrayList<long[]> list, int total) {
Collections.sort(list, this); Collections.sort(list, this);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论