fancy java

This commit is contained in:
rusefi 2024-09-11 14:55:37 -04:00 committed by rusefillc
parent 5c724896eb
commit 3756316bbc
1 changed files with 1 additions and 8 deletions

View File

@ -17,14 +17,7 @@ public class MockIniFileProvider {
IniFileModelImpl mockModel = mock(IniFileModelImpl.class);
when(mockModel.getMetaInfo()).thenReturn(mockMeta);
return new IniFileProvider() {
@Override
public IniFileModelImpl provide(String signature) {
return mockModel;
}
};
return signature -> mockModel;
}
public static void install() {