refactoring

This commit is contained in:
Miriam Baglioni 2020-06-30 14:08:24 +02:00
parent 9d56f6d75d
commit cd3af42989
1 changed files with 3 additions and 3 deletions

View File

@ -153,9 +153,9 @@ public class SparkPatchRefereed implements Serializable {
return false; return false;
} }
//TODO verify the reason of the NullPointerException fired at line 167 // TODO verify the reason of the NullPointerException fired at line 167
private static boolean equals(List<String> url, List<String> url1) { private static boolean equals(List<String> url, List<String> url1) {
try{ try {
if (url == null && url1 == null) { if (url == null && url1 == null) {
return true; return true;
} }
@ -173,7 +173,7 @@ public class SparkPatchRefereed implements Serializable {
} }
} }
return true; return true;
}catch(Exception e){ } catch (Exception e) {
return false; return false;
} }