Commit b31e88b3edcff4e0d69480aa66656b0db110404a

Authored by jcartign
1 parent 1d216ce4

fixing javadoc in Right domain object

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
src/main/java/fr/plil/sio/persistence/api/Right.java
@@ -9,10 +9,10 @@ public class Right { @@ -9,10 +9,10 @@ public class Right {
9 9
10 private String name; 10 private String name;
11 11
12 - /// the parent group 12 + /// the parent right
13 private Right parent; 13 private Right parent;
14 14
15 - /// the sibling group(s), eventually empty 15 + /// the sibling right(s), eventually empty
16 private Set<Right> siblings = new HashSet<>(); 16 private Set<Right> siblings = new HashSet<>();
17 17
18 public Set<Right> getSiblings() { 18 public Set<Right> getSiblings() {