Skip to content

Commit

Permalink
Fix fichier log
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelQuetin committed Dec 11, 2023
1 parent 89c3f42 commit 2246d36
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions src/main/java/fr/abes/bestppn/entity/ExecutionReport.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
package fr.abes.bestppn.entity;

import lombok.Data;
import lombok.Getter;
import lombok.Setter;

import java.util.concurrent.atomic.AtomicInteger;


public class ExecutionReport {
@Getter @Setter
private int nbtotalLines;

private AtomicInteger nbBestPpnFind;
Expand All @@ -20,15 +22,6 @@ public ExecutionReport() {
nbLinesWithErrorsInBestPPNSearch = new AtomicInteger(0);
nbtotalLines = 0;
}

public int getNbtotalLines() {
return this.nbtotalLines;
}

public void setNbtotalLines(int nbtotalLines) {
this.nbtotalLines = nbtotalLines;
}

public int getNbBestPpnFind() {
return nbBestPpnFind.get();
}
Expand Down

0 comments on commit 2246d36

Please sign in to comment.