@@ -1004,6 +1004,7 @@ class ProblemAttributes {
10041004 expectedProblemAttributes .put ("RedundantNullCheckAgainstNonNullType" , new ProblemAttributes (CategorizedProblem .CAT_POTENTIAL_PROGRAMMING_PROBLEM ));
10051005 expectedProblemAttributes .put ("RedundantNullCheckOnConstNonNullField" , new ProblemAttributes (CategorizedProblem .CAT_POTENTIAL_PROGRAMMING_PROBLEM ));
10061006 expectedProblemAttributes .put ("RedundantNullCheckOnField" , new ProblemAttributes (CategorizedProblem .CAT_POTENTIAL_PROGRAMMING_PROBLEM ));
1007+ expectedProblemAttributes .put ("RedundantNullCheckNullValueExpression" , new ProblemAttributes (CategorizedProblem .CAT_POTENTIAL_PROGRAMMING_PROBLEM ));
10071008 expectedProblemAttributes .put ("RedundantNullCheckOnNonNullExpression" , new ProblemAttributes (CategorizedProblem .CAT_POTENTIAL_PROGRAMMING_PROBLEM ));
10081009 expectedProblemAttributes .put ("RedundantNullCheckOnNonNullSpecdField" , new ProblemAttributes (CategorizedProblem .CAT_POTENTIAL_PROGRAMMING_PROBLEM ));
10091010 expectedProblemAttributes .put ("RedundantNullCheckOnNonNullLocalVariable" , new ProblemAttributes (CategorizedProblem .CAT_POTENTIAL_PROGRAMMING_PROBLEM ));
@@ -2154,6 +2155,7 @@ class ProblemAttributes {
21542155 expectedProblemAttributes .put ("RedundantNullCheckAgainstNonNullType" , new ProblemAttributes (JavaCore .COMPILER_PB_REDUNDANT_NULL_CHECK ));
21552156 expectedProblemAttributes .put ("RedundantNullCheckOnConstNonNullField" , new ProblemAttributes (JavaCore .COMPILER_PB_REDUNDANT_NULL_CHECK ));
21562157 expectedProblemAttributes .put ("RedundantNullCheckOnField" , new ProblemAttributes (JavaCore .COMPILER_PB_REDUNDANT_NULL_CHECK ));
2158+ expectedProblemAttributes .put ("RedundantNullCheckNullValueExpression" , new ProblemAttributes (JavaCore .COMPILER_PB_REDUNDANT_NULL_CHECK ));
21572159 expectedProblemAttributes .put ("RedundantNullCheckOnNonNullExpression" , new ProblemAttributes (JavaCore .COMPILER_PB_REDUNDANT_NULL_CHECK ));
21582160 expectedProblemAttributes .put ("RedundantNullCheckOnNonNullSpecdField" , new ProblemAttributes (JavaCore .COMPILER_PB_REDUNDANT_NULL_CHECK ));
21592161 expectedProblemAttributes .put ("RedundantNullCheckOnNonNullLocalVariable" , new ProblemAttributes (JavaCore .COMPILER_PB_REDUNDANT_NULL_CHECK ));
0 commit comments