Skip to content

Commit 0eaa5ca

Browse files
committed
Remove print statements
1 parent ca65acc commit 0eaa5ca

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

swan-assist/src/main/java/de/fraunhofer/iem/swan/assist/actions/RunSwanTask.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,8 @@ public void run(@NotNull ProgressIndicator indicator) {
5252

5353
indicator.setText("Running SWAN");
5454
SwanCli swan = new SwanCli();
55-
System.out.println("--1--");
55+
5656
try {
57-
System.out.println("--2--");
5857
swan.run(options);
5958
} catch (Exception e) {
6059
throw new RuntimeException(e);
@@ -63,13 +62,13 @@ public void run(@NotNull ProgressIndicator indicator) {
6362
duration = System.currentTimeMillis() - start;
6463
int m = (int) (((duration / 1000) / 60) % 60);
6564
int s = (int) ((duration / 1000) % 60);
66-
System.out.println("--3--");
65+
6766
indicator.setText("Exporting SRMs");
68-
System.out.println("--4--");
6967
String filename = parameters.get(Constants.OUTPUT_DIRECTORY) + File.separator + "srm-" + getCurrentTimestamp() + ".json";
7068
SrmList srmList = swan.getSwanPipeline().getModelEvaluator().getPredictedSrmList();
69+
7170
try {
72-
System.out.println("--5--");
71+
7372
SrmListUtils.exportFile(srmList, filename);
7473
} catch (IOException e) {
7574
throw new RuntimeException(e);

0 commit comments

Comments
 (0)