File tree Expand file tree Collapse file tree
plugin/src/main/java/io/snyk/eclipse/plugin Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -73,12 +73,12 @@ public String replaceCssVariables(String html) {
7373 htmlStyled = htmlStyled .replace ("var(--disabled-background-color)" ,
7474 super .getColorAsHex ("ADDITION_COLOR" , "#00ff00" ));
7575
76- String htmlWithScripts = getReplaceAIFixScripts (htmlStyled );
76+ String htmlWithScripts = replaceAIFixScripts (htmlStyled );
7777
7878 return htmlWithScripts ;
7979 }
8080
81- private String getReplaceAIFixScripts (String html ) {
81+ private String replaceAIFixScripts (String html ) {
8282 String htmlWithGenerateFunc = html .replace ("${ideGenerateAIFix}" , getGenerateAiFixScript ());
8383 String htmlWithApplyFunc = htmlWithGenerateFunc .replace ("${ideApplyAIFix}" , getApplyAiFixScript ());
8484
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ public Object function(Object[] arguments) {
102102 new BrowserFunction (browser , "ideGenerateAIFix" ) {
103103 @ Override
104104 public Object function (Object [] arguments ) {
105- browser .execute ("debugger;" ); // Triggers a breakpoint for debugging
105+ // browser.execute("debugger;"); // Triggers a breakpoint for debugging
106106 System .out .println ("generateAIFix" );
107107 SnykLogger .logInfo ("generateAIFix" );
108108
You can’t perform that action at this time.
0 commit comments