summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJames Ahlborn <jtahlborn@yahoo.com>2006-09-13 12:40:59 +0000
committerJames Ahlborn <jtahlborn@yahoo.com>2006-09-13 12:40:59 +0000
commit4aab96f721af42e2f559993b4812d0021208f24c (patch)
treefad7d66bbb98240a29392247f90e56f004ca3d3a /test
parentfa601c1c2fcc66e98b7ebb6b891be42f86e73a55 (diff)
downloadjackcess-4aab96f721af42e2f559993b4812d0021208f24c.tar.gz
jackcess-4aab96f721af42e2f559993b4812d0021208f24c.zip
refactor index entries to allow for fixing textual entries (not finished yet)
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@107 f203690c-595d-4dc9-a70b-905162fa7fd2
Diffstat (limited to 'test')
-rw-r--r--test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java b/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java
index ccefd0f..221131a 100644
--- a/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java
+++ b/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java
@@ -576,14 +576,14 @@ public class DatabaseTest extends TestCase {
db.createTable("test", columns);
}
- private static void dumpDatabase(Database mdb) throws Exception {
+ static void dumpDatabase(Database mdb) throws Exception {
System.out.println("DATABASE:");
for(Table table : mdb) {
dumpTable(table);
}
}
- private static void dumpTable(Table table) throws Exception {
+ static void dumpTable(Table table) throws Exception {
System.out.println("TABLE: " + table.getName());
for(Object row : table) {
System.out.println(row);