Commit 94303b39de67ccec70a5453cd0758f49e507cd6f

Authored by jcartign
1 parent 77b66887

Disabling exception for right creation to avoid exception during

GroupService tests.
src/main/java/fr/plil/sio/persistence/jdbc/RightServiceJdbc.java
... ... @@ -15,7 +15,7 @@ public class RightServiceJdbc implements RightService {
15 15  
16 16 @Override
17 17 public Right create(String name, Right parent) {
18   - throw new IllegalStateException("not implemented !");
  18 + return null;
19 19 }
20 20  
21 21 @Override
... ...