mhansonp commented on code in PR #7493:
URL: https://github.com/apache/geode/pull/7493#discussion_r859052523
##########
geode-core/src/distributedTest/java/org/apache/geode/internal/cache/execute/PRClientServerTestBase.java:
##########
@@ -273,12 +259,12 @@ public static void createCacheClient(String host, Integer
port1, Integer port2,
factory.setScope(Scope.LOCAL);
factory.setDataPolicy(DataPolicy.EMPTY);
factory.setPoolName(p.getName());
- RegionAttributes attrs = factory.create();
- Region region = cache.createRegion(PartitionedRegionName, attrs);
+ RegionAttributes<?, ?> attrs = factory.create();
Review Comment:
We could use Object, Object instead of ?,? because we only Objects(String,
Integer, Boolean) in region.
--
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]