You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by aa...@apache.org on 2013/03/07 18:02:29 UTC

svn commit: r1453959 - /cayenne/main/trunk/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml

Author: aadamchik
Date: Thu Mar  7 17:02:28 2013
New Revision: 1453959

URL: http://svn.apache.org/r1453959
Log:
typo in the method sig

Modified:
    cayenne/main/trunk/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml

Modified: cayenne/main/trunk/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml
URL: http://svn.apache.org/viewvc/cayenne/main/trunk/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml?rev=1453959&r1=1453958&r2=1453959&view=diff
==============================================================================
--- cayenne/main/trunk/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml (original)
+++ cayenne/main/trunk/docs/docbook/cayenne-guide/src/docbkx/lifecycle-events.xml Thu Mar  7 17:02:28 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>