File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
src/main/java/de/doubleslash/keeptime/view Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 1919import static de .doubleslash .keeptime .view .ReportController .NOTE_DELIMETER ;
2020
2121import java .lang .invoke .MethodHandles ;
22- import java .util .ArrayList ;
23- import java .util .List ;
2422
2523import org .slf4j .Logger ;
2624import org .slf4j .LoggerFactory ;
@@ -42,13 +40,13 @@ public ProjectReport(final int size) {
4240 }
4341
4442 public void appendToWorkNotes (final String currentWorkNote ) {
43+ this .numberOfNotes ++;
4544 this .sb .append (currentWorkNote .trim ());
46- if (!currentWorkNote .isEmpty ()){
47- if (this .size >1 ) {
45+ if (!currentWorkNote .isEmpty ()) {
46+ if (this .size >1 ) {
4847 this .sb .append (NOTE_DELIMETER );
4948 }
5049 }
51- this .numberOfNotes ++;
5250 }
5351
5452 public int getNumberOfNotes () {
You can’t perform that action at this time.
0 commit comments