Skip to content

Commit 0b8b729

Browse files
remove blank lines
1 parent 70da38a commit 0b8b729

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqldev/src/main/java/org/utplsql/sqldev/model/StringTools.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ public static String getCSV(List<String> list, String indent) {
4040
sb.append("\n");
4141
return sb.toString();
4242
}
43-
43+
4444
public static String getCSV(List<String> list, int indentSpaces) {
4545
return getCSV(list, repeat(" ", indentSpaces));
4646
}
47-
47+
4848
public static String getSimpleCSV(List<String> list) {
4949
final StringBuilder sb = new StringBuilder();
5050
for (final String item : list) {

0 commit comments

Comments
 (0)