improve code style

This commit is contained in:
hlq07 2018-05-27 01:14:17 +08:00
parent 723addfba5
commit 5d1ed01c9c
1 changed files with 5 additions and 5 deletions

View File

@ -83,10 +83,10 @@ public class TodoItemFactory {
public TodoItemFactory copy(@NotNull TodoItem item) {
beginTime(item.getBgn());
endTime(item.getEnd());
stringProperties(item.getStringPropertiesMap());
type(item.getType());
this.beginTime(item.getBgn()).
endTime(item.getEnd()).
stringProperties(item.getStringPropertiesMap()).
type(item.getType()).
personnel(Arrays.asList(item.getPersonnel()));
return this;
}