Author: aadamchik
Date: Thu Mar 7 17:03:29 2013
New Revision: 1453960
URL: http://svn.apache.org/r1453960
Log:
typo in the method sig
(cherry picked from commit 77ce03be8259237ca08fded0eab598347e769da3)
Modified:
cayenne/main/branches/STABLE-3.1/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml
Modified:
cayenne/main/branches/STABLE-3.1/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml
URL:
http://svn.apache.org/viewvc/cayenne/main/branches/STABLE-3.1/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml?rev=1453960&r1=1453959&r2=1453960&view=diff
==============================================================================
---
cayenne/main/branches/STABLE-3.1/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml
(original)
+++
cayenne/main/branches/STABLE-3.1/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml
Thu Mar 7 17:03:29 2013
@@ -299,7 +299,7 @@ public class MyEntity2 extends _MyEntity
@PostPersist(entityAnnotations = Tag.class)
@PostUpdate(entityAnnotations = Tag.class)
@PostRemove(entityAnnotations = Tag.class)
- void afterCommit() {
+ void afterCommit(Persistent object) {
counter.get()[0]++;
}
}</programlisting></para>