Skip to content

Commit a3c4545

Browse files
gdb4 to 3
1 parent 715b63b commit a3c4545

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/bridgedb/creator/DbBuilder.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
import org.bridgedb.rdb.construct.DBConnector;
4242
import org.bridgedb.rdb.construct.DataDerby;
4343
import org.bridgedb.rdb.construct.GdbConstruct;
44-
import org.bridgedb.rdb.construct.GdbConstructImpl4;
44+
import org.bridgedb.rdb.construct.GdbConstructImpl3;
4545

4646
/**
4747
* The class that performs the actual work on the database, used by
@@ -71,7 +71,7 @@ public DbBuilder(BridgeDbCreator creator) {
7171
* @throws IDMapperException when it cannot write to the output file
7272
*/
7373
public void createNewDb() throws IDMapperException {
74-
newDb = new GdbConstructImpl4(creator.getOutputFilePath(), new DataDerby(), DBConnector.PROP_RECREATE);
74+
newDb = new GdbConstructImpl3(creator.getOutputFilePath(), new DataDerby(), DBConnector.PROP_RECREATE);
7575
newDb.createGdbTables();
7676
newDb.preInsert();
7777

0 commit comments

Comments
 (0)