update samples

This commit is contained in:
William Cheng 2025-04-27 00:16:39 +08:00
parent 9f3a73f81a
commit 1850c07951
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ public class Order {
DELIVERED("delivered");
private String value;
private final String value;
StatusEnum(String value) {
this.value = value;

View File

@ -51,7 +51,7 @@ public class Pet {
SOLD("sold");
private String value;
private final String value;
StatusEnum(String value) {
this.value = value;