Skip to content

Commit

Permalink
fix conditions (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
SentryMan authored Jun 25, 2024
1 parent 90f56ed commit 678ab56
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public static void write(PrintWriter out, String packageName) {
+ " * @param implementations the implementations to verify the presence of\n"
+ " */\n"
+ " public void validateServices(String providesType, Collection<String> implementations) {\n"
+ " if (!buildPluginAvailable() || !moduleElement.isUnnamed()) {\n"
+ " if (buildPluginAvailable() || moduleElement.isUnnamed()) {\n"
+ " return;\n"
+ " }\n"
+ " var implSet = new TreeSet<>(implementations);\n"
Expand Down

0 comments on commit 678ab56

Please sign in to comment.