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 64e897a commit 6c0c492Copy full SHA for 6c0c492
core/src/main/java/overflowdb/NodeDb.java
@@ -118,6 +118,7 @@ public Map<String, Object> propertiesMapForStorage() {
118
119
for (String propertyKey : propertyKeys()) {
120
final Object value = property(propertyKey);
121
+ /** note: not differentiating `null` and `default value` is a bug - we won't fix it for now, but want to state that as a fact here... */
122
if (value != null && !value.equals(propertyDefaultValue(propertyKey))) results.put(propertyKey, value);
123
}
124
0 commit comments