ivanzlenko commented on code in PR #6357:
URL: https://github.com/apache/ignite-3/pull/6357#discussion_r2269760473


##########
modules/network/src/main/java/org/apache/ignite/internal/network/serialization/BuiltInType.java:
##########
@@ -98,7 +98,7 @@ public enum BuiltInType {
 
     static {
         Int2ObjectMap<BuiltInType> map = new Int2ObjectOpenHashMap<>();
-        for (BuiltInType type : BuiltInType.values()) {
+        for (BuiltInType type : values()) {

Review Comment:
   It is a problem. values() is a method of this class.



##########
modules/network/src/main/java/org/apache/ignite/internal/network/serialization/BuiltInType.java:
##########
@@ -108,7 +108,7 @@ public enum BuiltInType {
 
     static {
         Map<Class<?>, BuiltInType> map = new HashMap<>();
-        for (BuiltInType type : BuiltInType.values()) {
+        for (BuiltInType type : values()) {

Review Comment:
   Same



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