(no commit message)
[utils] / crawler / kiss / src / org / wamblee / crawler / kiss / main / ProgramActionExecutor.java
index c19b6473b04b16e829f0b30a6647d5938f6beb5c..fae06bda35ea10189da41d60e9ce48f6c7691ed5 100644 (file)
@@ -71,7 +71,7 @@ public class ProgramActionExecutor {
         // over the priorities will go from higher priority to lower priority.
         Set<Program> programs = _showsToRecord.get(-aPriority);
         if (programs == null) {
-            programs = new TreeSet<Program>(new Program.TimeSorter());
+            programs = new TreeSet<Program>(new Program.TimeComparator());
             _showsToRecord.put(-aPriority, programs);
         }
         programs.add(aProgram);