diff options
author | James Ahlborn <jtahlborn@yahoo.com> | 2013-08-11 03:25:16 +0000 |
---|---|---|
committer | James Ahlborn <jtahlborn@yahoo.com> | 2013-08-11 03:25:16 +0000 |
commit | 36e962f975944e2049a590c710fdc5a050571a67 (patch) | |
tree | 46bf99403e9ea99179ea2ab8a253182032afdc3b /test/src | |
parent | dccac86c851cc8121f792de0e3443986a3b1855c (diff) | |
download | jackcess-36e962f975944e2049a590c710fdc5a050571a67.tar.gz jackcess-36e962f975944e2049a590c710fdc5a050571a67.zip |
more javadoc cleanup; minor refactor of Joiner iteration methods
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@770 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/java/com/healthmarketscience/jackcess/IndexTest.java | 2 | ||||
-rw-r--r-- | test/src/java/com/healthmarketscience/jackcess/util/JoinerTest.java | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/test/src/java/com/healthmarketscience/jackcess/IndexTest.java b/test/src/java/com/healthmarketscience/jackcess/IndexTest.java index 5d1548c..777750e 100644 --- a/test/src/java/com/healthmarketscience/jackcess/IndexTest.java +++ b/test/src/java/com/healthmarketscience/jackcess/IndexTest.java @@ -188,8 +188,6 @@ public class IndexTest extends TestCase { t = (TableImpl)db.getTable("Table1"); index = t.getIndexes().get(0); - System.out.println("IndexTest: Index type: " + - index.getIndexData().getClass()); t.addRow(99, "abc", "def"); } } diff --git a/test/src/java/com/healthmarketscience/jackcess/util/JoinerTest.java b/test/src/java/com/healthmarketscience/jackcess/util/JoinerTest.java index 975b4fb..f6de03b 100644 --- a/test/src/java/com/healthmarketscience/jackcess/util/JoinerTest.java +++ b/test/src/java/com/healthmarketscience/jackcess/util/JoinerTest.java @@ -97,7 +97,7 @@ public class JoinerTest extends TestCase { List<Row> joinedRows = new ArrayList<Row>(); - for(Row t1Row : join.findRowsIterable(row)) { + for(Row t1Row : join.findRows(row)) { joinedRows.add(t1Row); } @@ -122,7 +122,7 @@ public class JoinerTest extends TestCase { } joinedRows = new ArrayList<Row>(); - for(Row t1Row : join.findRowsIterable(row, colNames)) { + for(Row t1Row : join.findRows(row).setColumnNames(colNames)) { joinedRows.add(t1Row); } |