Skip to content

Commit

Permalink
ISPN-971 Cache.getCacheManager() not binary-compatible with 4.2.0.FINAL
Browse files Browse the repository at this point in the history
  • Loading branch information
maniksurtani committed Mar 10, 2011
1 parent 4af0cc6 commit 68bca66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/org/infinispan/Cache.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
import org.infinispan.lifecycle.ComponentStatus;
import org.infinispan.lifecycle.Lifecycle;
import org.infinispan.loaders.CacheStore;
import org.infinispan.manager.CacheContainer;
import org.infinispan.manager.DefaultCacheManager;
import org.infinispan.manager.EmbeddedCacheManager;
import org.infinispan.notifications.Listenable;
import org.infinispan.util.concurrent.NotifyingFuture;

Expand Down Expand Up @@ -183,7 +183,7 @@ public interface Cache<K, V> extends ConcurrentMap<K, V>, Lifecycle, Listenable
*
* @return a cache manager
*/
EmbeddedCacheManager getCacheManager();
CacheContainer getCacheManager();

/**
* An overloaded form of {@link #put(Object, Object)}, which takes in lifespan parameters.
Expand Down

0 comments on commit 68bca66

Please sign in to comment.