diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2006-09-08 18:48:32 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2006-09-08 18:48:32 +0000 |
commit | abd574dd1afe6bf7bb33f5e05c9ecfec624401bd (patch) | |
tree | 1759bb5ba8abb5960d8f86974188718772042b38 /src/java/com/healthmarketscience/jackcess/UsageMap.java | |
parent | d89f63cae748a3e4f51185e392607ecd63c71a15 (diff) | |
download | jackcess-abd574dd1afe6bf7bb33f5e05c9ecfec624401bd.tar.gz jackcess-abd574dd1afe6bf7bb33f5e05c9ecfec624401bd.zip |
clean up lots of cruft around datatypes; add more sanity checking on table creation; fix free space calculations
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@105 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src/java/com/healthmarketscience/jackcess/UsageMap.java')
-rw-r--r-- | src/java/com/healthmarketscience/jackcess/UsageMap.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/com/healthmarketscience/jackcess/UsageMap.java b/src/java/com/healthmarketscience/jackcess/UsageMap.java index 5a4adfc..59b6326 100644 --- a/src/java/com/healthmarketscience/jackcess/UsageMap.java +++ b/src/java/com/healthmarketscience/jackcess/UsageMap.java @@ -99,8 +99,8 @@ public abstract class UsageMap { * @param format Format of the database that contains this usage map * @param rowStart Offset at which the declaration starts in the buffer */ - public UsageMap(PageChannel pageChannel, ByteBuffer dataBuffer, int pageNum, - JetFormat format, short rowStart) + protected UsageMap(PageChannel pageChannel, ByteBuffer dataBuffer, + int pageNum, JetFormat format, short rowStart) throws IOException { _pageChannel = pageChannel; |