File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
logicaldoc-core/src/main/java/com/logicaldoc/core/security/user Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ public class Group extends PersistentObject implements Serializable {
5656 private String name = "" ;
5757
5858 @ Column (name = "ld_description" , length = 255 )
59- private String descriprion = "" ;
59+ private String description = "" ;
6060
6161 /**
6262 * Specifies the source: 'local' indicates the group was created in the
@@ -95,20 +95,20 @@ public String getName() {
9595 }
9696
9797 public String getDescription () {
98- return descriprion ;
98+ return description ;
9999 }
100100
101101 public void setName (String name ) {
102102 this .name = name ;
103103 }
104104
105105 public void setDescription (String description ) {
106- descriprion = description ;
106+ this . description = description ;
107107 }
108108
109109 public void reset () {
110110 name = "" ;
111- descriprion = "" ;
111+ description = "" ;
112112 users = new HashSet <>();
113113 }
114114
You can’t perform that action at this time.
0 commit comments