Author: aadamchik
Date: Wed Feb 10 22:03:27 2010
New Revision: 908668

URL: http://svn.apache.org/viewvc?rev=908668&view=rev
Log:
CAY-1390 DataRowStore.processRemoteEvent processInvalidatedIDs typo
(cherry picked from commit 5f0ab9c5afb78e26bff7598ef9c2adaae96239c2)

Modified:
    
cayenne/main/branches/STABLE-3.0/docs/doc/src/main/resources/RELEASE-NOTES.txt
    
cayenne/main/branches/STABLE-3.0/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/access/DataRowStore.java

Modified: 
cayenne/main/branches/STABLE-3.0/docs/doc/src/main/resources/RELEASE-NOTES.txt
URL: 
http://svn.apache.org/viewvc/cayenne/main/branches/STABLE-3.0/docs/doc/src/main/resources/RELEASE-NOTES.txt?rev=908668&r1=908667&r2=908668&view=diff
==============================================================================
--- 
cayenne/main/branches/STABLE-3.0/docs/doc/src/main/resources/RELEASE-NOTES.txt 
(original)
+++ 
cayenne/main/branches/STABLE-3.0/docs/doc/src/main/resources/RELEASE-NOTES.txt 
Wed Feb 10 22:03:27 2010
@@ -18,6 +18,7 @@
 CAY-1382 org.apache.cayenne.reflect.EnumConverter not handling null values for 
ExtendedEnumerations
 CAY-1383 unneeded target in modeler attributes inspection 
 CAY-1385 Modeler: error dialog doesn't show the correct version
+CAY-1390 DataRowStore.processRemoteEvent processInvalidatedIDs typo
 
 ----------------------------------
 Release: 3.0 RC 2

Modified: 
cayenne/main/branches/STABLE-3.0/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/access/DataRowStore.java
URL: 
http://svn.apache.org/viewvc/cayenne/main/branches/STABLE-3.0/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/access/DataRowStore.java?rev=908668&r1=908667&r2=908668&view=diff
==============================================================================
--- 
cayenne/main/branches/STABLE-3.0/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/access/DataRowStore.java
 (original)
+++ 
cayenne/main/branches/STABLE-3.0/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/access/DataRowStore.java
 Wed Feb 10 22:03:27 2010
@@ -404,7 +404,7 @@
 
         synchronized (this) {
             processDeletedIDs(deletedSnapshotIds);
-            processInvalidatedIDs(deletedSnapshotIds);
+            processInvalidatedIDs(invalidatedSnapshotIds);
             processUpdateDiffs(diffs);
             sendUpdateNotification(
                     event.getPostedBy(),


Reply via email to