File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
src/test/java/org/openrewrite/java/migrate/lombok Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ public class A {
6262 package example;
6363
6464 public record A(
65- String test) {
65+ String test) {
6666 }
6767 """
6868 ),
@@ -121,9 +121,9 @@ public class Test {
121121 """ ,
122122 """
123123 public record Test(
124- String field1,
124+ String field1,
125125
126- String field2) {
126+ String field2) {
127127 @Override
128128 public String toString() {
129129 return "Test(" +
@@ -166,7 +166,7 @@ public class B {
166166 import lombok.Value;
167167
168168 public record A(
169- String test) {
169+ String test) {
170170 }
171171
172172 @Value
@@ -201,7 +201,7 @@ static class B {
201201
202202 public class A {
203203 record B(
204- String test) {
204+ String test) {
205205 }
206206 }
207207 """
@@ -233,7 +233,7 @@ public class A implements Serializable {
233233 import java.io.Serializable;
234234
235235 public record A(
236- String test) implements Serializable {
236+ String test) implements Serializable {
237237 }
238238 """
239239 )
@@ -266,7 +266,7 @@ public class A implements Serializable {
266266
267267 @Builder
268268 public record A(
269- String test) implements Serializable {
269+ String test) implements Serializable {
270270 }
271271 """
272272 )
@@ -289,7 +289,7 @@ public class Foo {
289289 """ ,
290290 """
291291 public record Foo(
292- boolean bar) {
292+ boolean bar) {
293293 }"""
294294 ),
295295 java (
@@ -329,9 +329,9 @@ public class Config {
329329 """ ,
330330 """
331331 public record Config(
332- boolean enabled,
333- Boolean active,
334- String name) {
332+ boolean enabled,
333+ Boolean active,
334+ String name) {
335335 }
336336 """
337337 ),
@@ -384,7 +384,7 @@ Supplier<String> usingMethodReference() {
384384 import java.util.function.Supplier;
385385
386386 record A(
387- String test) {
387+ String test) {
388388 }
389389
390390 class Using {
You can’t perform that action at this time.
0 commit comments