Skip to content

Commit

Permalink
fix checkstyle error : * import
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmetmircik committed Sep 29, 2014
1 parent f707a5a commit a1b45ef
Showing 1 changed file with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,22 @@
import javax.cache.spi.CachingProvider;
import java.lang.ref.WeakReference;
import java.net.URI;
import java.util.*;
import java.util.Collections;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.Properties;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.atomic.AtomicBoolean;

/**
* The Hazelcast CacheManager base class. Hazelcast supports two modes:
* <ul>
* <li>Client - HazelcastClientCacheManager</li>
* <li>Server - HazelcastServerCacheManager</li>
* <li>Client - HazelcastClientCacheManager</li>
* <li>Server - HazelcastServerCacheManager</li>
* </ul>
*
* @see CacheManager
*/
public abstract class HazelcastCacheManager implements CacheManager {
Expand Down Expand Up @@ -256,6 +261,7 @@ public void destroyCache(String cacheName) {

/**
* todo Why is this empty?
*
* @param cacheName
*/
protected void removeCacheConfigFromLocal(String cacheName) {
Expand Down

0 comments on commit a1b45ef

Please sign in to comment.