We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
README.md
1 parent 62564ac commit e067228Copy full SHA for e067228
1 file changed
README.md
@@ -93,11 +93,11 @@ class FooIssueService {
93
}
94
95
96
- private static void toTicketSimple(FooIssue issue) {
+ private static Ticket toTicketSimple(FooIssue issue) {
97
return toTicketAdvanced(issue, "See comments for details");
98
99
100
- private static void toTicketAdvanced(FooIssue issue, String update) {
+ private static Ticket toTicketAdvanced(FooIssue issue, String update) {
101
Ticket ticket = new Ticket(issue.getRequesterId(), issue.getTitle(), new Comment(update));
102
ticket.setExternalId(toIdempotencyKey(issue));
103
return ticket;
0 commit comments