Skip to content

Commit

Permalink
#470: cleanup formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerdes authored and rtroilo committed Nov 11, 2022
1 parent 2fa8838 commit 0255645
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import org.heigit.ohsome.oshdb.util.exceptions.OSHDBException;

public class JdbcTagTranslator implements TagTranslator {

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


private static final String OSHDB_OSM_KEY = String.format("SELECT txt, id"
+ " from %s"
+ " where id = any(?)", TableNames.E_KEY);
Expand Down

0 comments on commit 0255645

Please sign in to comment.