File tree Expand file tree Collapse file tree
src/main/java/seedu/address/model/meeting/meeting Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -111,18 +111,18 @@ public int hashCode() {
111111 @ Override
112112 public String toString () {
113113 final StringBuilder builder = new StringBuilder ();
114- builder .append (getTitle ())
115- .append (" Title: " )
116- .append (getDescription ())
114+ builder .append (" Title: " )
115+ .append (getTitle ())
117116 .append (" Description: " )
118- .append (getFrom ())
117+ .append (getDescription ())
119118 .append (" From: " )
120- .append (getTo ())
119+ .append (getFrom ())
121120 .append (" To: " )
122- .append (getContacts ())
121+ .append (getTo ())
123122 .append (" Contacts: " )
124- .append (getLocation ())
125- .append (" Location: " );
123+ .append (getContacts ())
124+ .append (" Location: " )
125+ .append (getLocation ());
126126 return builder .toString ();
127127 }
128128
You can’t perform that action at this time.
0 commit comments