File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
test/framework/src/main/java/org/elasticsearch/entitlement/bootstrap Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -33,21 +33,17 @@ public static void bootstrap() {
33
33
private record TestPathLookup () implements PathLookup {
34
34
@ Override
35
35
public Path pidFile () {
36
- throw notYetImplemented () ;
36
+ return null ;
37
37
}
38
38
39
39
@ Override
40
40
public Stream <Path > getBaseDirPaths (BaseDir baseDir ) {
41
- throw notYetImplemented ();
41
+ return Stream . empty ();
42
42
}
43
43
44
44
@ Override
45
45
public Stream <Path > resolveSettingPaths (BaseDir baseDir , String settingName ) {
46
- throw notYetImplemented ();
47
- }
48
-
49
- private static IllegalStateException notYetImplemented () {
50
- return new IllegalStateException ("not yet implemented" );
46
+ return Stream .empty ();
51
47
}
52
48
53
49
}
You can’t perform that action at this time.
0 commit comments