Skip to content

Commit

Permalink
fix tostring
Browse files Browse the repository at this point in the history
  • Loading branch information
elihart committed Feb 5, 2017
1 parent d96c44c commit 5f63e34
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions epoxy-adapter/src/main/java/com/airbnb/epoxy/EpoxyModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -287,10 +287,11 @@ public void onViewDetachedFromWindow(T view) {

@Override
public String toString() {
return "{" + getClass().getSimpleName()
+ "id=" + id
+ ", layout=" + getLayout()
+ ", shown=" + shown
+ '}';
return getClass().getSimpleName() + "{" +
"id=" + id +
", layout=" + getLayout() +
", shown=" + shown +
", addedToAdapter=" + addedToAdapter +
'}';
}
}

0 comments on commit 5f63e34

Please sign in to comment.