Skip to content

Commit c9e09a4

Browse files
committed
Remove space in N+1 select message
1 parent 159979e commit c9e09a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/sql-annotations/src/main/java/org/quickperf/sql/framework/JdbcSuggestion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public String getMessage() {
2121
String bomb = "\uD83D\uDCA3";
2222
return bomb + " " + "You may have even more select statements with production data."
2323
+ System.lineSeparator()
24-
+ " Be careful with the cost of JDBC server roundtrips: "
24+
+ "Be careful with the cost of JDBC server roundtrips: "
2525
+ "https://blog.jooq.org/2017/12/18/the-cost-of-jdbc-server-roundtrips/";
2626
}
2727
},

0 commit comments

Comments
 (0)