You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: kafka-manager-common/src/main/java/com/xiaojukeji/kafka/manager/common/entity/dto/rd/LogicalClusterDTO.java
+1-4Lines changed: 1 addition & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -118,10 +118,7 @@ public String toString() {
118
118
}
119
119
120
120
publicbooleanlegal() {
121
-
if (ValidateUtils.isNull(clusterId)
122
-
|| ValidateUtils.isNull(clusterId)
123
-
|| ValidateUtils.isEmptyList(regionIdList)
124
-
|| ValidateUtils.isNull(mode)) {
121
+
if (ValidateUtils.isNull(clusterId) || ValidateUtils.isEmptyList(regionIdList) || ValidateUtils.isNull(mode)) {
125
122
returnfalse;
126
123
}
127
124
if (!ClusterModeEnum.SHARED_MODE.getCode().equals(mode) && ValidateUtils.isNull(appId)) {
Copy file name to clipboardExpand all lines: kafka-manager-web/src/main/java/com/xiaojukeji/kafka/manager/web/api/versionone/rd/RdLogicalClusterController.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ public Result updateById(@RequestBody LogicalClusterDTO dto) {
0 commit comments