Skip to content

Commit

Permalink
Update GetterOnRecord.java
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaggard authored Nov 27, 2023
1 parent 0806a07 commit a3dcd2e
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions test/transform/resource/after-ecj/GetterOnRecord.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@
public @Getter record GetterOnRecord(String a, String b) {
/* Implicit */ private final String a;
/* Implicit */ private final String b;
public GetterOnRecord(String a, String b) {
super();
.a = a;
.b = b;
}

public @java.lang.SuppressWarnings("all") String getA() {
return this.a;
Expand Down

0 comments on commit a3dcd2e

Please sign in to comment.