Revised Code Style
This commit is contained in:
parent
28fb3e9d25
commit
60fbd2a000
@ -17,7 +17,7 @@ public class Group extends Contact {
|
|||||||
private static final long serialVersionUID = 0L;
|
private static final long serialVersionUID = 0L;
|
||||||
|
|
||||||
// TODO add admins
|
// TODO add admins
|
||||||
private List<Long> memberIDs = new ArrayList<>();
|
private List<Long> memberIDs;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new instance of a {@link Group}.
|
* Creates a new instance of a {@link Group}.
|
||||||
@ -26,7 +26,7 @@ public class Group extends Contact {
|
|||||||
* @param name the name of this group
|
* @param name the name of this group
|
||||||
* @since Envoy Common v0.1-beta
|
* @since Envoy Common v0.1-beta
|
||||||
*/
|
*/
|
||||||
public Group(long id, String name) { super(id, name); }
|
public Group(long id, String name) { this(id, name, new ArrayList<>()); }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new instance of a {@link Group}.
|
* Creates a new instance of a {@link Group}.
|
||||||
|
Reference in New Issue
Block a user