PlayWithMagic / PlayWithMagic.org

PlayWithMagic.org is a web application that catalogs magic tricks and helps magicians build shows.
http://playwithmagic.github.io/PlayWithMagic.org/
Apache License 2.0
2 stars 1 forks source link

Magician Type is not being sorted in the Form #176

Closed marknelsonengineer closed 9 years ago

marknelsonengineer commented 9 years ago

...This is because it's stored as a HashMap, which returns objects in the order of the hash, not the order in which they were placed in the Map.

Replace with a LinkedHashMap. This is why I love Java.

marknelsonengineer commented 9 years ago

Done and tested.