mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
destinationIdの型を間違えてたので修正
This commit is contained in:
parent
14ba4f0c93
commit
975b3abd98
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user