Skip to content

Commit 6c32671

Browse files
committed
#470: cleanup formatting
1 parent be47d39 commit 6c32671

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

oshdb-util/src/main/java/org/heigit/ohsome/oshdb/util/tagtranslator/JdbcTagTranslator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
import org.heigit.ohsome.oshdb.util.exceptions.OSHDBException;
1919

2020
public class JdbcTagTranslator implements TagTranslator {
21+
2122
private static final String OSM_OSHDB_KEY = String.format("SELECT id, txt"
2223
+ " from %s k"
2324
+ " where k.txt = ?", TableNames.E_KEY);
@@ -27,7 +28,6 @@ public class JdbcTagTranslator implements TagTranslator {
2728
+ " left join %s kv on k.id = kv.keyid"
2829
+ " where k.txt = ? and kv.txt = any (?)", TableNames.E_KEY, TableNames.E_KEYVALUE);
2930

30-
3131
private static final String OSHDB_OSM_KEY = String.format("SELECT txt, id"
3232
+ " from %s"
3333
+ " where id = any(?)", TableNames.E_KEY);

0 commit comments

Comments
 (0)