Fix toolbar title bug
Add properties peer user.
This commit is contained in:
@@ -82,8 +82,14 @@ public class Collaboration {
|
||||
this.collaborator = collaborator;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
public CollaborationProperties getCollaborationProperties() {
|
||||
return collaborationProperties;
|
||||
CollaborationProperties result = collaborationProperties;
|
||||
if (result == null) {
|
||||
collaborationProperties = new CollaborationProperties();
|
||||
result = collaborationProperties;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
public void setCollaborationProperties(@NotNull CollaborationProperties collaborationProperties) {
|
||||
|
Reference in New Issue
Block a user