Skip to content

Commit

Permalink
ISPN-2182 Some DefaultCacheManager constructors still performing lega…
Browse files Browse the repository at this point in the history
…cy configuration adaptation
  • Loading branch information
pferraro authored and tristantarrant committed Aug 7, 2012
1 parent f78954e commit 6577efe
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -227,7 +227,7 @@ public DefaultCacheManager(GlobalConfiguration globalConfiguration) {
* @param globalConfiguration GlobalConfiguration to use for all caches created
*/
public DefaultCacheManager(org.infinispan.configuration.global.GlobalConfiguration globalConfiguration) {
this(LegacyGlobalConfigurationAdaptor.adapt(globalConfiguration), null, true);
this(globalConfiguration, null, true);
}

/**
Expand All @@ -252,7 +252,7 @@ public DefaultCacheManager(GlobalConfiguration globalConfiguration, boolean star
* @param start if true, the cache manager is started.
*/
public DefaultCacheManager(org.infinispan.configuration.global.GlobalConfiguration globalConfiguration, boolean start) {
this(LegacyGlobalConfigurationAdaptor.adapt(globalConfiguration), null, start);
this(globalConfiguration, null, start);
}

/**
Expand Down

0 comments on commit 6577efe

Please sign in to comment.