Skip to content

Commit eb96177

Browse files
committed
Fix checkstyle mistake
1 parent 227170c commit eb96177

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plan/common/src/main/java/com/djrapitops/plan/settings/config/ConfigWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ private void dfsTreeTraverseLineResolve(ConfigNode writing, Collection<String> l
101101
// node is null: Inconsistent config node state
102102
// value is null: Has no value (empty)
103103
// nodeOrder is empty: Has no children
104-
if (node == null || (node.value == null && node.nodeOrder.isEmpty())) {
104+
if (node == null || node.value == null && node.nodeOrder.isEmpty()) {
105105
continue;
106106
}
107107

0 commit comments

Comments
 (0)