Skip to content

Commit

Permalink
Remaining changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaggard committed Nov 15, 2023
1 parent 1f77105 commit c7bb6bd
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Maarten Mulders <[email protected]>
Mark Haynes <[email protected]>
Mart Hagenaars <[email protected]>
Mateusz Matela <[email protected]>
Mat Jaggard <[email protected]>
Martin O'Connor <[email protected]>
Michael Dardis <[email protected]>
Michael Ernst <[email protected]>
Expand Down
15 changes: 9 additions & 6 deletions test/transform/resource/after-delombok/GetterOnRecord.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
// version 14:
public record GetterOnRecord(String a, String b) {
public String getA() {
return a;
}
public String getB() {
return b;
}
@java.lang.SuppressWarnings("all")
public String getA() {
return this.a;
}

@java.lang.SuppressWarnings("all")
public String getB() {
return this.b;
}
}
8 changes: 4 additions & 4 deletions test/transform/resource/after-ecj/GetterOnRecord.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ public GetterOnRecord(String a, String b) {
.b = b;
}

public String getA() {
return a;
public @java.lang.SuppressWarnings("all") String getA() {
return this.a;
}
public String getB() {
return b;
public @java.lang.SuppressWarnings("all") String getB() {
return this.b;
}
}

This file was deleted.

This file was deleted.

0 comments on commit c7bb6bd

Please sign in to comment.