We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
<dependencies>
1 parent f9e370a commit 853f1c2Copy full SHA for 853f1c2
src/main/java/org/openrewrite/java/dependencies/RemoveDependency.java
@@ -15,6 +15,7 @@
15
*/
16
package org.openrewrite.java.dependencies;
17
18
+import com.sun.org.apache.bcel.internal.classfile.SourceFile;
19
import lombok.EqualsAndHashCode;
20
import lombok.Value;
21
import org.jspecify.annotations.Nullable;
@@ -71,7 +72,7 @@ public String getDisplayName() {
71
72
@Override
73
public String getDescription() {
74
return "For Gradle project, removes a single dependency from the dependencies section of the `build.gradle`.\n" +
- "For Maven project, removes a single dependency from the <dependencies> section of the pom.xml.";
75
+ "For Maven project, removes a single dependency from the `<dependencies>` section of the pom.xml.";
76
}
77
78
0 commit comments