Skip to content

Commit

Permalink
remove unecessary final keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
bmscomp committed Oct 5, 2023
1 parent 06a7793 commit 41d19b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public static Set<String> getProjecDeployer(MavenProject project) {
.collect(Collectors.toSet());
}

private static final String strip(String s) {
private static String strip(String s) {
return s.replaceAll("^" + Pattern.quote(QUARKUS_PREFIX), "");
}
}

0 comments on commit 41d19b6

Please sign in to comment.