We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2515230 commit 3db75a6Copy full SHA for 3db75a6
oshdb-api/src/main/java/org/heigit/ohsome/oshdb/api/db/OSHDBJdbc.java
@@ -29,7 +29,6 @@
29
public class OSHDBJdbc extends OSHDBDatabase {
30
31
protected final DataSource dataSource;
32
- protected final DataSource keytablesSource;
33
protected final TagTranslator tagTranslator;
34
private boolean useMultithreading = true;
35
@@ -39,8 +38,7 @@ public OSHDBJdbc(DataSource source) {
39
38
40
public OSHDBJdbc(DataSource source, DataSource keytables) {
41
this.dataSource = source;
42
- this.keytablesSource = keytables;
43
- this.tagTranslator = new JdbcTagTranslator(keytablesSource);
+ this.tagTranslator = new JdbcTagTranslator(keytables);
44
}
45
46
@Override
0 commit comments