mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 14:17:57 +01:00
Fix lazy initialization bug.
This commit is contained in:
parent
146c6d8a17
commit
b3234675cc
@ -101,8 +101,8 @@ public class Collaborator implements Serializable {
|
|||||||
if (this == that) return true;
|
if (this == that) return true;
|
||||||
if (that == null) return false;
|
if (that == null) return false;
|
||||||
|
|
||||||
if (id != that.id) return false;
|
if (id != that.getId()) return false;
|
||||||
if (email != null ? !email.equals(that.email) : that.email != null) return false;
|
if (email != null ? !email.equals(that.getEmail()) : that.getEmail() != null) return false;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user