Fix setters in Meeting.java
This commit is contained in:
parent
6c9af5c2ed
commit
4bf5a26ecf
@ -168,8 +168,8 @@ public class Meeting {
|
||||
return createdTime;
|
||||
}
|
||||
|
||||
public Integer setSequence(Integer s) {
|
||||
return sequence = s;
|
||||
public void setSequence(Integer s) {
|
||||
sequence = s;
|
||||
}
|
||||
|
||||
public Integer getSequence() {
|
||||
@ -224,8 +224,8 @@ public class Meeting {
|
||||
return intMeetingId;
|
||||
}
|
||||
|
||||
public String setParentMeetingId(String p) {
|
||||
return parentMeetingId = p;
|
||||
public void setParentMeetingId(String p) {
|
||||
parentMeetingId = p;
|
||||
}
|
||||
|
||||
public String getParentMeetingId() {
|
||||
|
Loading…
Reference in New Issue
Block a user