arminw      2005/10/03 11:04:21

  Modified:    src/java/org/apache/ojb/broker/cache
                        MaterializationCache.java SessionCacheImpl.java
  Log:
  change method signatur
  
  Revision  Changes    Path
  1.3       +3 -3      
db-ojb/src/java/org/apache/ojb/broker/cache/MaterializationCache.java
  
  Index: MaterializationCache.java
  ===================================================================
  RCS file: 
/home/cvs/db-ojb/src/java/org/apache/ojb/broker/cache/MaterializationCache.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- MaterializationCache.java 27 Aug 2005 12:06:45 -0000      1.2
  +++ MaterializationCache.java 3 Oct 2005 18:04:21 -0000       1.3
  @@ -57,7 +57,7 @@
        * nested calls to the same PB instance methods, e.g. materialization of 
a referenced
        * object which itself have several references, ...
        * <br/>
  -     * This method and [EMAIL PROTECTED] 
#disableMaterializationCache(SessionCache)} are used to delimit nested calls
  +     * This method and [EMAIL PROTECTED] #disableMaterializationCache()} are 
used to delimit nested calls
        * and to detect the end of an object materialization and avoid endless 
loops on circular
        * references.
        * <br/>
  @@ -73,7 +73,7 @@
       /**
        * @see #enableMaterializationCache()
        */
  -    public void disableMaterializationCache(SessionCache cache)
  +    public void disableMaterializationCache()
       {
           if(!enabledReadCache) return;
   
  
  
  
  1.2       +3 -3      
db-ojb/src/java/org/apache/ojb/broker/cache/SessionCacheImpl.java
  
  Index: SessionCacheImpl.java
  ===================================================================
  RCS file: 
/home/cvs/db-ojb/src/java/org/apache/ojb/broker/cache/SessionCacheImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SessionCacheImpl.java     27 Aug 2005 12:06:45 -0000      1.1
  +++ SessionCacheImpl.java     3 Oct 2005 18:04:21 -0000       1.2
  @@ -150,7 +150,7 @@
   
       public void disableMaterializationCache()
       {
  -        materializationCache.disableMaterializationCache(this);
  +        materializationCache.disableMaterializationCache();
       }
   
       /**
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to