Skip to content
Snippets Groups Projects
Commit d9534213 authored by juanf's avatar juanf
Browse files

BIS-1059: Bugfix null pointer

parent b2007ada
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,9 @@ public class DelayedExecution
return false;
}
DelayedExecution that = (DelayedExecution) o;
return creationOrUpdate.getClass() == that.creationOrUpdate.getClass() && identifier.equals(that.identifier);
return creationOrUpdate.getClass() == that.creationOrUpdate.getClass() &&
identifier != null &&
identifier.equals(that.identifier);
}
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment