File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/java/org/scion/multiping Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ class MyWithHandler extends WithHandler {
124
124
ScionProvider p =
125
125
ScionProvider .createSync (
126
126
() -> new MySync (3 ),
127
- MyWithHandler :: new ,
127
+ h -> new MyWithHandler ( h ) ,
128
128
Helper ::isdAsList ,
129
129
() -> Long .valueOf (0 ),
130
130
(ia , addr ) -> PathHelper .createPaths (3 ));
@@ -154,7 +154,7 @@ class MyWithHandler extends WithHandler {
154
154
ScionProvider p =
155
155
ScionProvider .createSync (
156
156
() -> new MySync (3 ),
157
- MyWithHandler :: new ,
157
+ h -> new MyWithHandler ( h ) ,
158
158
Helper ::isdAsList ,
159
159
() -> Long .valueOf (0 ),
160
160
(ia , addr ) -> PathHelper .createPaths (3 ));
@@ -175,7 +175,7 @@ class MyWithHandler extends WithIOError {
175
175
ScionProvider p =
176
176
ScionProvider .createSync (
177
177
() -> new MySync (3 ),
178
- MyWithHandler :: new ,
178
+ h -> new MyWithHandler ( h ) ,
179
179
Helper ::isdAsList ,
180
180
() -> Long .valueOf (0 ),
181
181
(ia , addr ) -> PathHelper .createPaths (3 ));
You can’t perform that action at this time.
0 commit comments