-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
test/transform/resource/messages-delombok/GetterOnRecord.java.messages
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
test/transform/resource/messages-ecj/GetterOnRecord.java.messages
This file was deleted.
Oops, something went wrong.