Skip to content

Commit 826aad0

Browse files
ShawkyZacke
authored andcommitted
fix: syntax errror
1 parent 06d8e04 commit 826aad0

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

plugin/src/main/java/io/snyk/eclipse/plugin/html/StaticPageHtmlProvider.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -174,14 +174,8 @@ public String getSummaryInitHtml() {
174174
""".formatted(head);
175175
return replaceCssVariables(html);
176176
}
177-
"""
178-
.formatted(head);
179-
return replaceCssVariables(html);
180-
}
181177

182178
public String getFormattedSummaryHtml(String summary) {
183-
var html = summary
184-
.formatted(head);
185-
return replaceCssVariables(html);
179+
return replaceCssVariables(summary);
186180
}
187181
}

0 commit comments

Comments
 (0)