From 36e962f975944e2049a590c710fdc5a050571a67 Mon Sep 17 00:00:00 2001 From: James Ahlborn Date: Sun, 11 Aug 2013 03:25:16 +0000 Subject: 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 --- test/src/java/com/healthmarketscience/jackcess/IndexTest.java | 2 -- test/src/java/com/healthmarketscience/jackcess/util/JoinerTest.java | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'test/src') 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 joinedRows = new ArrayList(); - 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(); - for(Row t1Row : join.findRowsIterable(row, colNames)) { + for(Row t1Row : join.findRows(row).setColumnNames(colNames)) { joinedRows.add(t1Row); } -- cgit v1.2.3