Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/maven/org.openrewrite.recipe-re…
Browse files Browse the repository at this point in the history
…write-recommendations-1.1.0
  • Loading branch information
SaptarshiSarkar12 authored Jan 10, 2024
2 parents c424cc4 + 2fe3f12 commit b127d7d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CLI/src/main/java/backend/FileDownloader.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public FileDownloader(String link, String fileName, String dir) {
link = "https://" + link;
}
if (link.startsWith("https://github.com/") || (link.startsWith("http://github.com/"))) {
if (!(link.endsWith("?raw=true"))) {
if (!link.endsWith("?raw=true")) {
link = link + "?raw=true";
}
}
Expand Down
2 changes: 1 addition & 1 deletion GUI/src/main/java/gui_support/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public static Scene getScene(Parent root) {
return scene;
}

public static void addCSS(Scene scene, URL ...css) {
public static void addCSS(Scene scene, URL... css) {
for (URL url : css) {
scene.getStylesheets().add(url.toExternalForm());
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<plugin>
<groupId>org.openrewrite.maven</groupId>
<artifactId>rewrite-maven-plugin</artifactId>
<version>5.17.1</version>
<version>5.18.0</version>
<configuration>
<activeRecipes>
<recipe>org.openrewrite.staticanalysis.CommonStaticAnalysis</recipe>
Expand Down

0 comments on commit b127d7d

Please sign in to comment.