This commit is contained in:
ChUrl
2020-12-11 16:01:48 +01:00
parent d06d535bcd
commit 2277f6b165

View File

@ -82,4 +82,8 @@ public class Node {
public int hashCode() {
return Objects.hash(this.name, this.value, this.children); // TODO: children?
}
public String getValue() {
return this.value;
}
}