mhansonp commented on code in PR #6976:
URL: https://github.com/apache/geode/pull/6976#discussion_r874103928
##########
geode-core/src/distributedTest/java/org/apache/geode/internal/cache/PartitionedRegionSingleHopDUnitTest.java:
##########
@@ -1501,11 +1482,11 @@ public String getId() {
}
@Override
- public void execute(FunctionContext context) {
+ public void execute(FunctionContext<T> context) {
RegionFunctionContext rc = (RegionFunctionContext) context;
Region<Object, Object> r = rc.getDataSet();
- Set filter = rc.getFilter();
- if (rc.getFilter() == null) {
+ Set<Object> filter = (Set<Object>) rc.getFilter();
+ if (filter == null) {
for (int i = 0; i < 200; i++) {
r.put(i, i);
}
Review Comment:
Ok, I switched Object to ?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]