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/12/28 11:32:36 UTC

svn commit: r1553803 - /cayenne/main/trunk/cayenne-server/src/main/java/org/apache/cayenne/map/ObjRelationship.java

Author: aadamchik
Date: Sat Dec 28 10:32:35 2013
New Revision: 1553803

URL: http://svn.apache.org/r1553803
Log:
CAY-1868 Select contention with multiple contexts

we still need to remove the original synchronization

Modified:
    cayenne/main/trunk/cayenne-server/src/main/java/org/apache/cayenne/map/ObjRelationship.java

Modified: cayenne/main/trunk/cayenne-server/src/main/java/org/apache/cayenne/map/ObjRelationship.java
URL: http://svn.apache.org/viewvc/cayenne/main/trunk/cayenne-server/src/main/java/org/apache/cayenne/map/ObjRelationship.java?rev=1553803&r1=1553802&r2=1553803&view=diff
==============================================================================
--- cayenne/main/trunk/cayenne-server/src/main/java/org/apache/cayenne/map/ObjRelationship.java (original)
+++ cayenne/main/trunk/cayenne-server/src/main/java/org/apache/cayenne/map/ObjRelationship.java Sat Dec 28 10:32:35 2013
@@ -573,7 +573,7 @@ public class ObjRelationship extends Rel
     /**
      * Loads path from "deferredPath" variable (if specified)
      */
-    synchronized void refreshFromDeferredPath() {
+    void refreshFromDeferredPath() {
         if (deferredPath != null) {
             
             synchronized(this) {