Showing
1 changed file
with
3 additions
and
0 deletions
@@ -79,6 +79,9 @@ public class DegradeServiceImpl implements DegradeService { | @@ -79,6 +79,9 @@ public class DegradeServiceImpl implements DegradeService { | ||
79 | Set<String> level1PageSet = new HashSet<>(); | 79 | Set<String> level1PageSet = new HashSet<>(); |
80 | Set<String> level2PageSet = new HashSet<>(); | 80 | Set<String> level2PageSet = new HashSet<>(); |
81 | for (DegradeConfig degradeConfig : degradeConfigs) { | 81 | for (DegradeConfig degradeConfig : degradeConfigs) { |
82 | + if (degradeConfig == null){ | ||
83 | + continue; | ||
84 | + } | ||
82 | if (StringUtils.isNotBlank(degradeConfig.getFunctionPointName())) { | 85 | if (StringUtils.isNotBlank(degradeConfig.getFunctionPointName())) { |
83 | functionSet.add(degradeConfig.getFunctionPointName()); | 86 | functionSet.add(degradeConfig.getFunctionPointName()); |
84 | } | 87 | } |
-
Please register or login to post a comment