Skip to content

Commit 5295c75

Browse files
Make org.openrewrite.java.migrate.lombok.log.LogVisitor public to avoid class loader access issues when loading recipe (#738)
1 parent 5a5fbd1 commit 5295c75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/openrewrite/java/migrate/lombok/log/LogVisitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import static java.util.Comparator.comparing;
2626

2727
@EqualsAndHashCode(callSuper = false)
28-
class LogVisitor extends JavaIsoVisitor<ExecutionContext> {
28+
public class LogVisitor extends JavaIsoVisitor<ExecutionContext> {
2929

3030
private final String logType;
3131
private final String factoryType;

0 commit comments

Comments
 (0)