-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cast in random order after r1566 #1411
Comments
Comment #1 originally posted by Omertron on 2010-04-07T22:03:39.000Z: Fixed r1584 |
Comment #2 originally posted by Omertron on 2010-04-08T07:07:01.000Z: Actually cast should not be sorted. It should be in the same order as added by a |
Comment #3 originally posted by Omertron on 2010-04-23T16:24:02.000Z: It would be possible to add an option within the properties to enable or not the I do not like leaving sorted alphabetically, I'd rather go as I have in the nfo. Sorry for my english. |
Comment #4 originally posted by Omertron on 2010-04-24T08:10:36.000Z: Should now be correct in r1627 |
Comment #5 originally posted by Omertron on 2010-04-25T23:43:01.000Z: At least for IMDB this is not corrected yet, it used to be working fine (same order |
Comment #6 originally posted by Omertron on 2010-04-26T01:48:29.000Z: Ok I fixed the issue for IMDB, but the FilmwebPlugin fails the junit tests after this in src/com/moviejukebox/model/Movie.java line 736 change the line to the following: this.cast = new LinkedHashSet(cast); I also added the following in src/com/moviejukebox/plugin/ImdbPlugin.java and import java.util.LinkedHashSet; |
Comment #7 originally posted by Omertron on 2010-04-26T06:40:02.000Z: Thanks Tux, I've updated that and some other places too |
Comment #8 originally posted by Omertron on 2010-04-28T14:17:19.000Z: Stuart, it is not needed to change plugins code in r1635. It's enough to change The plugins changes in r1635 should be reverted. The plugins replace the whole |
Comment #9 originally posted by Omertron on 2010-04-28T18:42:43.000Z: Originally the code created a HashSet (random collection) scraped from the website That's why I changed them over to add each actor individually. It seemed inefficient |
Comment #10 originally posted by Omertron on 2010-04-28T20:33:57.000Z: No, plugin code created |
Original issue 1412 created by Omertron on 2010-04-07T19:46:40.000Z:
In r1566 the Movie::cast property type was changed from ArrayList to HashSet.
Cast members are in "random" order after that change.
The text was updated successfully, but these errors were encountered: