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:
parent
761ab5560b
commit
fd80b451d9
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue