Skip to content

Commit eab7d2d

Browse files
committed
Time feature is avaialble only to the SecuCheckTaintAnalysisResult not to its sub results.
1 parent 6ba5c1b commit eab7d2d

File tree

2 files changed

+0
-24
lines changed

2 files changed

+0
-24
lines changed

de.fraunhofer.iem.secucheck.analysis.result/src/main/java/de/fraunhofer/iem/secucheck/analysis/result/AnalysisResult.java

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,4 @@ public interface AnalysisResult {
1515
* Clear the complete result
1616
*/
1717
public void clear();
18-
19-
/**
20-
* Start time of the analysis
21-
*
22-
* @return Start time of the analysis
23-
*/
24-
public String getStartTime();
25-
26-
/**
27-
* End time of the analysis
28-
*
29-
* @return End time of the analysis
30-
*/
31-
public String getEndTime();
32-
33-
/**
34-
* Total execution time of the analsis
35-
*
36-
* @return Elapsed time of analysis
37-
*/
38-
public long getExecutionTime();
3918
}

de.fraunhofer.iem.secucheck.analysis.result/src/main/java/de/fraunhofer/iem/secucheck/analysis/result/SecucheckTaintAnalysisResult.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,14 @@ public final class SecucheckTaintAnalysisResult implements AnalysisResult {
1616
private String endTime;
1717
private long elapsedTime;
1818

19-
@Override
2019
public String getStartTime() {
2120
return this.startTime;
2221
}
2322

24-
@Override
2523
public String getEndTime() {
2624
return this.endTime;
2725
}
2826

29-
@Override
3027
public long getExecutionTime() {
3128
return this.elapsedTime;
3229
}

0 commit comments

Comments
 (0)