Skip to content

Commit

Permalink
EPMRPP-96317 fix count
Browse files Browse the repository at this point in the history
  • Loading branch information
grabsefx committed Dec 18, 2024
1 parent a873090 commit cf53bb8
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ public void execute() {
int userAnalyzed = 0;
int sentToAnalyze = 0;
int skipped = 0;
int passed = 0;
String version;
boolean analyzerEnabled;
Set<String> status = new HashSet<>();
Expand All @@ -133,7 +132,6 @@ public void execute() {
sentToAnalyze += metadata.optInt("sentToAnalyze");
}
skipped += metadata.optInt("skipped");
passed += metadata.optInt("passed");

userAnalyzed += metadata.optInt("userAnalyzed");
autoAnalyzed += metadata.optInt("analyzed");
Expand All @@ -152,8 +150,7 @@ public void execute() {
params.put("number", autoAnalyzed
+ "#" + userAnalyzed
+ "#" + sentToAnalyze
+ "#" + skipped
+ "#" + passed);
+ "#" + skipped);
params.put("auto_analysis", String.join("#", autoAnalysisState));
params.put("status", String.join("#", status));
}
Expand Down

0 comments on commit cf53bb8

Please sign in to comment.