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,11 +83,11 @@ public class TodoItemFactory {
public TodoItemFactory copy(@NotNull TodoItem item) { public TodoItemFactory copy(@NotNull TodoItem item) {
beginTime(item.getBgn()); this.beginTime(item.getBgn()).
endTime(item.getEnd()); endTime(item.getEnd()).
stringProperties(item.getStringPropertiesMap()); stringProperties(item.getStringPropertiesMap()).
type(item.getType()); type(item.getType()).
personnel(Arrays.asList(item.getPersonnel())); personnel(Arrays.asList(item.getPersonnel()));
return this; return this;
} }