nbusy / nbusy-android

NBusy Android app.
http://nbusy.com
Apache License 2.0
1 stars 0 forks source link

Make modal object (i.e. Chat/Message/etc.) immutable to make change tracking easier #30

Closed soygul closed 8 years ago

soygul commented 8 years ago

http://programmers.stackexchange.com/questions/151733/if-immutable-objects-are-good-why-do-people-keep-creating-mutable-objects

Of course, down side is we need to make Chat.List<Message> immutable which would waste huge memory on an Android system.. though making Message itself immutable is OK.

soygul commented 8 years ago

Done.