Skip to content

Commit a8b76ee

Browse files
committed
chore: Add repititve example code
1 parent 54d9cce commit a8b76ee

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

repository-postgresql/src/main/java/org/lfenergy/compas/scl/data/repository/postgresql/CompasSclDataPostgreSQLRepository.java

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,4 +367,36 @@ private List<String> createLabelList(Array sqlArray) throws SQLException {
367367
}
368368
return labelsList;
369369
}
370+
371+
private void repetitiveExample() {
372+
var str = "";
373+
str += "Hello";
374+
str += "World";
375+
376+
str = "Hello" + "World";
377+
}
378+
379+
private void repetitiveExample2() {
380+
var str = "";
381+
str += "Hello";
382+
str += "World";
383+
384+
str = "Hello" + "World";
385+
}
386+
387+
private void repetitiveExample3() {
388+
var str = "";
389+
str += "Hello";
390+
str += "World";
391+
392+
str = "Hello" + "World";
393+
}
394+
395+
private void repetitiveExample4() {
396+
var str = "";
397+
str += "Hello";
398+
str += "World";
399+
400+
str = "Hello" + "World";
401+
}
370402
}

0 commit comments

Comments
 (0)