提交 8552a872 authored 作者: noelgrandin's avatar noelgrandin

return value from this method not used, so drop it

上级 2d330b23
...@@ -128,9 +128,8 @@ public class PageFreeList extends Page { ...@@ -128,9 +128,8 @@ public class PageFreeList extends Page {
* Mark a page as used. * Mark a page as used.
* *
* @param pageId the page id * @param pageId the page id
* @return the page id, or -1
*/ */
int allocate(int pageId) { void allocate(int pageId) {
int idx = pageId - getPos(); int idx = pageId - getPos();
if (idx >= 0 && !used.get(idx)) { if (idx >= 0 && !used.get(idx)) {
// set the bit first, because logUndo can // set the bit first, because logUndo can
...@@ -140,7 +139,6 @@ public class PageFreeList extends Page { ...@@ -140,7 +139,6 @@ public class PageFreeList extends Page {
store.logUndo(this, data); store.logUndo(this, data);
store.update(this); store.update(this);
} }
return pageId;
} }
/** /**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论