File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
sonar-delphi-plugin/src/main/java/au/com/integradev/delphi Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ### Changed
11+
12+ - Prefer ` Debugger_DebugSourcePath ` over ` DCC_UnitSearchPath ` in the analysis search path.
13+
1014## [ 1.12.2] - 2025-01-06
1115
1216### Fixed
Original file line number Diff line number Diff line change @@ -100,8 +100,8 @@ private void executeOnFiles(SensorContext sensorContext) {
100100 List <Path > sourceFiles = inputFilesToPaths (inputFiles );
101101 List <Path > referencedFiles = delphiProjectHelper .getReferencedFiles ();
102102 List <Path > searchPathDirectories = new ArrayList <>();
103- searchPathDirectories .addAll (delphiProjectHelper .getSearchDirectories ());
104103 searchPathDirectories .addAll (delphiProjectHelper .getDebugSourceDirectories ());
104+ searchPathDirectories .addAll (delphiProjectHelper .getSearchDirectories ());
105105 SearchPath searchPath = SearchPath .create (searchPathDirectories );
106106
107107 SymbolTable symbolTable =
You can’t perform that action at this time.
0 commit comments