demery-pivotal commented on a change in pull request #7492:
URL: https://github.com/apache/geode/pull/7492#discussion_r836649443



##########
File path: 
geode-core/src/distributedTest/java/org/apache/geode/internal/cache/execute/FunctionServiceBase.java
##########
@@ -433,4 +437,17 @@ public void fromData(DataInput in) throws IOException, 
ClassNotFoundException {
     }
   }
 
+  public static <T> Function<T> 
identifiableFunction(SerializableConsumerIF<FunctionContext<T>> f) {
+    return new Function<T>() {
+      @Override
+      public String getId() {

Review comment:
       Yes. The same problem happens with anonymous classes on _all_ JDKs. It 
happens with lambdas starting with JDK14 or 15. Before that, lambdas' classes 
had canonical names. Anonymous classes didn't.




-- 
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]


Reply via email to