Patch from Jürg Lehni to not track unset() on non-persitable properties.

Fixes bug 633 http://helma.org/bugs/show_bug.cgi?id=633
This commit is contained in:
hns 2008-09-20 20:22:37 +00:00
parent 761ab5560b
commit fd80b451d9

View file

@ -2481,7 +2481,7 @@ public final class Node implements INode, Serializable {
lastmodified = System.currentTimeMillis(); lastmodified = System.currentTimeMillis();
if (state == CLEAN) { if (state == CLEAN && isPersistableProperty(propname)) {
markAs(MODIFIED); markAs(MODIFIED);
} }
} else if (dbmap != null) { } else if (dbmap != null) {