aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/com/healthmarketscience/jackcess/impl
diff options
context:
space:
mode:
authorJames Ahlborn <jtahlborn@yahoo.com>2024-02-08 03:00:28 +0000
committerJames Ahlborn <jtahlborn@yahoo.com>2024-02-08 03:00:28 +0000
commit22bf8a8642c84fc500f5c66ef59de1f7211f93a3 (patch)
treecfe24fb10166143833b360da38be7f0bc03300a7 /src/main/java/com/healthmarketscience/jackcess/impl
parent672387c5a4499e6c104a1c09dc845a5cdb6c62f1 (diff)
downloadjackcess-22bf8a8642c84fc500f5c66ef59de1f7211f93a3.tar.gz
jackcess-22bf8a8642c84fc500f5c66ef59de1f7211f93a3.zip
cleanup some compiler warnings, thanks Markus Spann
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@1407 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'src/main/java/com/healthmarketscience/jackcess/impl')
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/impl/IndexData.java17
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/impl/IndexPageCache.java2
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/impl/TableImpl.java1
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/impl/expr/Expressionator.java1
4 files changed, 7 insertions, 14 deletions
diff --git a/src/main/java/com/healthmarketscience/jackcess/impl/IndexData.java b/src/main/java/com/healthmarketscience/jackcess/impl/IndexData.java
index c08e70b..7eb094a 100644
--- a/src/main/java/com/healthmarketscience/jackcess/impl/IndexData.java
+++ b/src/main/java/com/healthmarketscience/jackcess/impl/IndexData.java
@@ -532,6 +532,7 @@ public class IndexData {
* @param creator description of the indexes to write
* @param buffer Buffer to write to
*/
+ @SuppressWarnings("resource")
protected static void writeDefinition(
TableMutator creator, ByteBuffer buffer,
TableMutator.IndexDataState idxDataState, ByteBuffer rootPageBuffer)
@@ -2659,36 +2660,32 @@ public class IndexData {
_between = between;
}
- public DataPage getDataPage() {
+ DataPage getDataPage() {
return _dataPage;
}
- public int getIndex() {
+ int getIndex() {
return _idx;
}
- public int getNextIndex() {
+ int getNextIndex() {
// note, _idx does not need to be advanced if it was pointing at a
// between position
return(_between ? _idx : (_idx + 1));
}
- public int getPrevIndex() {
+ int getPrevIndex() {
// note, we ignore the between flag here because the index will be
// pointing at the correct next index in either the between or
// non-between case
return(_idx - 1);
}
- public Entry getEntry() {
+ Entry getEntry() {
return _entry;
}
- public boolean isBetween() {
- return _between;
- }
-
- public boolean equalsEntry(Entry entry) {
+ boolean equalsEntry(Entry entry) {
return _entry.equals(entry);
}
diff --git a/src/main/java/com/healthmarketscience/jackcess/impl/IndexPageCache.java b/src/main/java/com/healthmarketscience/jackcess/impl/IndexPageCache.java
index b64b93d..0d6c997 100644
--- a/src/main/java/com/healthmarketscience/jackcess/impl/IndexPageCache.java
+++ b/src/main/java/com/healthmarketscience/jackcess/impl/IndexPageCache.java
@@ -23,7 +23,6 @@ import java.util.AbstractList;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
-import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedList;
@@ -31,7 +30,6 @@ import java.util.List;
import java.util.Map;
import java.util.Queue;
import java.util.RandomAccess;
-import java.util.Set;
import static com.healthmarketscience.jackcess.impl.IndexData.*;
import com.healthmarketscience.jackcess.impl.IndexData.DataPage;
diff --git a/src/main/java/com/healthmarketscience/jackcess/impl/TableImpl.java b/src/main/java/com/healthmarketscience/jackcess/impl/TableImpl.java
index c01c1a5..2be9f45 100644
--- a/src/main/java/com/healthmarketscience/jackcess/impl/TableImpl.java
+++ b/src/main/java/com/healthmarketscience/jackcess/impl/TableImpl.java
@@ -53,7 +53,6 @@ import com.healthmarketscience.jackcess.Table;
import com.healthmarketscience.jackcess.expr.Identifier;
import com.healthmarketscience.jackcess.util.ErrorHandler;
import com.healthmarketscience.jackcess.util.ExportUtil;
-import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
diff --git a/src/main/java/com/healthmarketscience/jackcess/impl/expr/Expressionator.java b/src/main/java/com/healthmarketscience/jackcess/impl/expr/Expressionator.java
index 1c6d5f3..e15e7be 100644
--- a/src/main/java/com/healthmarketscience/jackcess/impl/expr/Expressionator.java
+++ b/src/main/java/com/healthmarketscience/jackcess/impl/expr/Expressionator.java
@@ -73,7 +73,6 @@ public class Expressionator
}
private static final String FUNC_START_DELIM = "(";
- private static final String FUNC_END_DELIM = ")";
private static final String OPEN_PAREN = "(";
private static final String CLOSE_PAREN = ")";
private static final String FUNC_PARAM_SEP = ",";