Merge branch 'master' of github.com:SpringSource/spring-gemfire

This commit is contained in:
David Turanski
2012-07-24 13:19:52 -04:00
6 changed files with 107 additions and 10 deletions

View File

@@ -183,7 +183,11 @@ public class SimpleGemfireRepository<T, ID extends Serializable> implements Gemf
@Override
@SuppressWarnings("rawtypes")
public Void doInGemfire(Region region) {
region.clear();
for (Object key : region.keySet()) {
region.remove(key);
}
return null;
}
});