@@ -414,7 +414,7 @@ private void testAnalyzeNewFileAddedAfterOmnisharpStartup(Path tmpDir, boolean l
414
414
415
415
var newFilePath = baseDir .resolve ("ConsoleApp1/Program2.cs" );
416
416
backend .getFileService ().didUpdateFileSystem (new DidUpdateFileSystemParams (List .of (), List .of (new ClientFileDto (
417
- baseDir .resolve ("ConsoleApp1/Program2.cs" ).toUri (), newFilePath , SOLUTION1_MODULE_KEY , false , "UTF-8" , newFilePath , "" , Language .CS , false ))));
417
+ baseDir .resolve ("ConsoleApp1/Program2.cs" ).toUri (), newFilePath , SOLUTION1_MODULE_KEY , false , "UTF-8" , newFilePath , "" , Language .CS , false )), List . of () ));
418
418
419
419
// Give time for Omnisharp to process the file event
420
420
Thread .sleep (1000 );
@@ -951,7 +951,7 @@ private List<RawIssueDto> analyzeCSharpFile(String configScopeId, String baseDir
951
951
var filePath = Path .of ("projects" ).resolve (baseDir ).resolve (filePathStr );
952
952
var fileUri = filePath .toUri ();
953
953
backend .getFileService ().didUpdateFileSystem (new DidUpdateFileSystemParams (List .of (),
954
- List .of (new ClientFileDto (fileUri , Path .of (filePathStr ), configScopeId , false , "UTF-8" , filePath .toAbsolutePath (), content , Language .CS , true ))));
954
+ List .of (new ClientFileDto (fileUri , Path .of (filePathStr ), configScopeId , false , "UTF-8" , filePath .toAbsolutePath (), content , Language .CS , true )), List . of () ));
955
955
956
956
var propertiesMap = new HashMap <String , String >();
957
957
for (int i =0 ; i <properties .length ; i +=2 ) {
0 commit comments