Skip to content
This repository has been archived by the owner on Jun 11, 2023. It is now read-only.

Commit

Permalink
#36 [api] Change in FXMLModel toString() the term 'data' to 'model'.
Browse files Browse the repository at this point in the history
  • Loading branch information
Naoghuman committed Feb 23, 2019
1 parent 9259065 commit be02cc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions release/Release_v0.2.0-PRERELEASE_2018-12-dd_HH-mm.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ and connect them to a controller (called the presenter).


#### Refactoring
#36 [api] Change in FXMLModel toString() the term 'data' to 'model'.



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public String toString() {
final StringBuilder sb = new StringBuilder();
sb.append("FXMLModel [").append("\n"); // NOI18N

sb.append(" data: ").append(data.toString()).append("\n"); // NOI18N
sb.append(" model: ").append(data.toString()).append("\n"); // NOI18N

sb.append("]"); // NOI18N

Expand Down

0 comments on commit be02cc4

Please sign in to comment.