We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5aa947 commit fe84442Copy full SHA for fe84442
metafix/src/main/java/org/metafacture/metafix/Value.java
@@ -433,9 +433,7 @@ public void add(final Value value) {
433
}
434
435
/* package-private */ void add(final Value value, final boolean appendToPath) {
436
- if (!isNull(value)) {
437
- list.add(appendToPath ? value.withPathAppend(list.size() + 1) : value);
438
- }
+ add(list.size(), value, appendToPath);
439
440
441
/* package-private */ void add(final int index, final Value value) {
0 commit comments