Skip to content

Commit

Permalink
Fix missing constructor for nullable argument
Browse files Browse the repository at this point in the history
This fails with SonarQube cloud, because it uses PicoContainer and doesn't support @nullable for constructor dependency injection
  • Loading branch information
saberduck committed Nov 28, 2024
1 parent d14b757 commit 27cad33
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ public class AnalysisWithWatchProgram extends AbstractAnalysis {

TsConfigCache tsConfigCache;

public AnalysisWithWatchProgram(
BridgeServer bridgeServer,
AnalysisProcessor analysisProcessor,
AnalysisWarningsWrapper analysisWarnings
) {
this(bridgeServer, analysisProcessor, analysisWarnings, null);
}

public AnalysisWithWatchProgram(
BridgeServer bridgeServer,
AnalysisProcessor analysisProcessor,
Expand Down

0 comments on commit 27cad33

Please sign in to comment.