Skip to content

Commit 3844722

Browse files
committed
rewording
1 parent 202af44 commit 3844722

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

toxic-library-remover/src/main/java/com/github/jtama/openrewrite/RemoveLogStartInvocations.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ public String getDescription() {
2828
return "Replace any usage of `Timer.logStart()` and `Timer.logEnd()` methods by `@Timed` annotation.";
2929
}
3030

31+
@Override
32+
public boolean causesAnotherCycle() {
33+
return true;
34+
}
35+
3136
@Override
3237
public TreeVisitor<?, ExecutionContext> getVisitor() {
3338
return new Preconditions.Check(new UsesType<>("com.github.jtama.toxic.Timer", true),

toxic-library-user/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<version>1.0.1-SNAPSHOT</version>
1010

1111
<properties>
12-
<maven.compiler.source>17</maven.compiler.source>
13-
<maven.compiler.target>17</maven.compiler.target>
12+
<maven.compiler.source>25</maven.compiler.source>
13+
<maven.compiler.target>25</maven.compiler.target>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
<compiler-plugin.version>3.8.1</compiler-plugin.version>
1616
<quarkus.version>3.17.3</quarkus.version>

0 commit comments

Comments
 (0)