Changeset 78

Show
Ignore:
Timestamp:
06/02/07 16:58:47 (1 year ago)
Author:
chris
Message:

r7784@flan: chris | 2007-06-02 16:58:23 -0700
histories is now parsed properly

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/org/lastpod/History.java

    r60 r78  
    122122     */ 
    123123    public void addhistory(long historyTime) { 
     124        histories.add(Long.toString(historyTime)); 
    124125        newHistories.add(Long.toString(historyTime)); 
    125126    } 
  • trunk/src/main/org/lastpod/ModelImpl.java

    r76 r78  
    155155 
    156156            /* Refresh track list. */ 
     157            recentlyPlayed = new ArrayList(); 
     158            parsePlayCounts(userInterface); 
    157159            userInterface.newTrackListAvailable(recentlyPlayed); 
    158160        } catch (Exception e) { 
  • trunk/src/test/org/lastpod/MockModel.java

    r77 r78  
    134134 
    135135        /* Refresh track list. */ 
     136        recentlyPlayed = new ArrayList(); 
     137        parsePlayCounts(userInterface); 
    136138        userInterface.newTrackListAvailable(recentlyPlayed); 
    137139