shishkovilja commented on code in PR #12779:
URL: https://github.com/apache/ignite/pull/12779#discussion_r2877341077


##########
modules/core/src/main/java/org/apache/ignite/internal/managers/deployment/GridDeploymentInfoBean.java:
##########
@@ -43,22 +39,26 @@ public class GridDeploymentInfoBean implements Message, 
GridDeploymentInfo, Exte
     private static final long serialVersionUID = 0L;
 
     /** */
-    private IgniteUuid clsLdrId;
+    @Order(0)
+    IgniteUuid clsLdrId;
 
     /** */
-    private DeploymentMode depMode;
+    @Order(1)
+    DeploymentMode depMode;
 
     /** */
-    private String userVer;
+    @Order(2)
+    String userVer;
 
     /** */
     @Deprecated // Left for backward compatibility only.
-    private boolean locDepOwner;
+    @Order(3)
+    boolean locDepOwner;

Review Comment:
   `#localDeploymentOwner` getter seems to be unused and I don't see any setter 
for this field. Please, file an issue for removal of `#locDepOwner` (link this 
comment into this issue).



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