Skip to content

Commit

Permalink
Sample Issue with Serializer (#39899)
Browse files Browse the repository at this point in the history
* fixed can't serialize json string

* added public modifier to fix serialization issue
  • Loading branch information
tvaron3 committed Apr 24, 2024
1 parent 3a26d7f commit c07a4a0
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -612,10 +612,10 @@ static final class Passenger {
String getId() {
return id;
}
String getEmail() { return email; }
String getName() { return name; }
String getDeparture() { return departure; }
String getDestination() { return destination; }
public String getEmail() { return email; }
public String getName() { return name; }
public String getDeparture() { return departure; }
public String getDestination() { return destination; }

void setDestination(String destination) {
this.destination = destination;
Expand Down

0 comments on commit c07a4a0

Please sign in to comment.