Skip to content

Commit a237cf1

Browse files
committed
Use overload
1 parent f5c48ee commit a237cf1

File tree

1 file changed

+1
-1
lines changed
  • modules/config/src/main/java/org/polyfrost/oneconfig/api/config/v1

1 file changed

+1
-1
lines changed

modules/config/src/main/java/org/polyfrost/oneconfig/api/config/v1/Tree.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public Tree put(Node n) {
154154
if (old == n) return this; // yeah, ok.
155155
if (old != null) {
156156
// LOGGER.warn("Replacing existing node with id {}: {} -> {}", n.getID(), old, n);
157-
n.overwrite(old, false, false);
157+
n.overwrite(old, false);
158158
}
159159
theMap.put(n.getID(), n);
160160
return this;

0 commit comments

Comments
 (0)