File tree Expand file tree Collapse file tree 1 file changed +4
-11
lines changed
src/main/java/de/rub/nds/tlsscanner/probe Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -82,9 +82,7 @@ public ProbeResult call() {
82
82
}
83
83
84
84
public final void executeState (State ... states ) {
85
- this .executeState (new ArrayList <State >(Arrays
86
- .asList (states
87
- )));
85
+ this .executeState (new ArrayList <State >(Arrays .asList (states )));
88
86
89
87
}
90
88
@@ -96,24 +94,19 @@ public final void executeState(List<State> states) {
96
94
97
95
}
98
96
99
- public abstract ProbeResult
100
- executeTest ();
97
+ public abstract ProbeResult executeTest ();
101
98
102
- public abstract boolean shouldBeExecuted (SiteReport report
103
- );
99
+ public abstract boolean shouldBeExecuted (SiteReport report );
104
100
105
- public abstract void adjustConfig (SiteReport report
106
- );
101
+ public abstract void adjustConfig (SiteReport report );
107
102
108
103
public abstract ProbeResult getNotExecutedResult ();
109
104
110
105
public ParallelExecutor getParallelExecutor () {
111
106
return parallelExecutor ;
112
-
113
107
}
114
108
115
109
public StatsWriter getWriter () {
116
110
return writer ;
117
-
118
111
}
119
112
}
You can’t perform that action at this time.
0 commit comments