Skip to content

Commit

Permalink
'wl/utils/Buildcats.java' was automatically formatted.
Browse files Browse the repository at this point in the history
  • Loading branch information
Widelands Bunnybot committed Dec 16, 2024
1 parent 3db9b2f commit df277df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wl/utils/Buildcats.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ private static void recurse(String out, File dir, boolean mapsOnly) throws Excep
public static void buildCatalogues() throws Exception {
File output = Files.createTempFile(null, ".lua").toFile();
PrintWriter write = new PrintWriter(new FileWriter(output));
ResultSet sql = Utils.sql(
Utils.Databases.kWebsite, "select uploader_comment from wlmaps_map where " +
"uploader_comment is not null and uploader_comment != ''");
ResultSet sql = Utils.sql(Utils.Databases.kWebsite,
"select uploader_comment from wlmaps_map where "
+ "uploader_comment is not null and uploader_comment != ''");
while (sql.next()) {
String str = sql.getString("uploader_comment");
write.print("_(\"");
Expand Down

0 comments on commit df277df

Please sign in to comment.