mirror of
https://github.com/didi/KnowStreaming.git
synced 2026-01-08 07:32:11 +08:00
Update if statements
This commit is contained in:
@@ -303,12 +303,10 @@ public class TopicManagerServiceImpl implements TopicManagerService {
|
|||||||
clusterDO.getId(),
|
clusterDO.getId(),
|
||||||
topicName
|
topicName
|
||||||
);
|
);
|
||||||
if (ValidateUtils.isNull(logicalClusterDO)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
TopicDO topicDO = topicMap.get(topicName);
|
TopicDO topicDO = topicMap.get(topicName);
|
||||||
if (ValidateUtils.isNull(topicDO)) {
|
|
||||||
|
if (ValidateUtils.isNull(topicDO) || ValidateUtils.isNull(logicalClusterDO)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user