destinationIdの型を間違えてたので修正

This commit is contained in:
r-ca 2023-12-17 14:19:31 +09:00
parent 14ba4f0c93
commit 975b3abd98
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -4,10 +4,10 @@ public class DebugMenuListItem {
private String title; private String title;
private String description; private String description;
private String destinationId; // Navigation destination ID private int destinationId; // Navigation destination ID
private boolean enabled; private boolean enabled;
public DebugMenuListItem(String title, String description, String destinationId, boolean enabled) { public DebugMenuListItem(String title, String description, int destinationId, boolean enabled) {
this.title = title; this.title = title;
this.description = description; this.description = description;
this.destinationId = destinationId; this.destinationId = destinationId;
@ -22,7 +22,7 @@ public class DebugMenuListItem {
return description; return description;
} }
public String getDestinationId() { public int getDestinationId() {
return destinationId; return destinationId;
} }