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