File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 301
301
" Retrieve the preferred minimum time, in seconds, a track must be
302
302
playing in order to get written to the playlist."
303
303
[]
304
- (or (when-let [^String pref (min-time-pref-key (prefs/get-preferences ))]
304
+ (or (when-let [pref (min-time-pref-key (prefs/get-preferences ))]
305
305
(try
306
306
(Long/valueOf pref)
307
307
(catch Exception e
312
312
" Retrieve the preference setting for filtering out players that are
313
313
not On-Air."
314
314
[]
315
- (or (when-let [^String pref (on-air-pref-key (prefs/get-preferences ))]
315
+ (or (when-let [pref (on-air-pref-key (prefs/get-preferences ))]
316
316
(try
317
317
(Boolean/valueOf pref)
318
318
(catch Exception e
324
324
playlist file when all players have been stopped for a threshold
325
325
interval."
326
326
[]
327
- (or (when-let [^String pref (split-pref-key (prefs/get-preferences ))]
327
+ (or (when-let [pref (split-pref-key (prefs/get-preferences ))]
328
328
(try
329
329
(Boolean/valueOf pref)
330
330
(catch Exception e
336
336
before forcing the start of a new playlist when a new track starts
337
337
playing."
338
338
[]
339
- (or (when-let [^String pref (new-playlist-threshold-pref-key (prefs/get-preferences ))]
339
+ (or (when-let [pref (new-playlist-threshold-pref-key (prefs/get-preferences ))]
340
340
(try
341
341
(Long/valueOf pref)
342
342
(catch Exception e
You can’t perform that action at this time.
0 commit comments