treewide: add and apply a bunch of lints

This commit is contained in:
2025-07-17 00:21:36 +02:00
parent 2803db9c12
commit bb68319527
39 changed files with 399 additions and 356 deletions

View File

@@ -1,3 +1,3 @@
String escapeStringValue(String value) {
return "'" + value.replaceAll("'", "''") + "'";
return "'${value.replaceAll("'", "''")}'";
}