diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2008-04-29 15:08:48 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2008-04-29 15:08:48 +0000 |
commit | b999f8502ffc8aef07393e9d80d156f4469b8386 (patch) | |
tree | b42bdf4602a8042f15d270c215be8bed02b0b74c | |
parent | 9442b7273f8c4cce6cc6fc76f17e95992c834f60 (diff) | |
download | jackcess-b999f8502ffc8aef07393e9d80d156f4469b8386.tar.gz jackcess-b999f8502ffc8aef07393e9d80d156f4469b8386.zip |
cleanup unused param
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@342 f203690c-595d-4dc9-a70b-905162fa7fd2
-rw-r--r-- | src/java/com/healthmarketscience/jackcess/UsageMap.java | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/java/com/healthmarketscience/jackcess/UsageMap.java b/src/java/com/healthmarketscience/jackcess/UsageMap.java index b0ca415..4fd3dda 100644 --- a/src/java/com/healthmarketscience/jackcess/UsageMap.java +++ b/src/java/com/healthmarketscience/jackcess/UsageMap.java @@ -527,7 +527,7 @@ public class UsageMap (pageNumber > lastPage)) { // move to new start page, filling in as we move - moveToNewStartPageForRemove(firstPage, lastPage, pageNumber); + moveToNewStartPageForRemove(firstPage, pageNumber); } @@ -580,13 +580,10 @@ public class UsageMap * firstPage (if valid), otherwise the newPageNumber. Any page numbers * added to the end of the usage map are set to "on". * @param firstPage current first used page - * @param lastPage current last used page * @param newPageNumber page number to remove once the map has been * shifted to the new start page */ - private void moveToNewStartPageForRemove(int firstPage, - int lastPage, - int newPageNumber) + private void moveToNewStartPageForRemove(int firstPage, int newPageNumber) throws IOException { int oldEndPage = getEndPage(); |