* JDK7 compatibility

This commit is contained in:
Reinhard Pointner 2014-07-29 09:08:35 +00:00
parent c711e4543c
commit acbe8c9354
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
package net.filebot.format;
import static java.util.Arrays.*;
import static java.util.Collections.*;
import static net.filebot.MediaTypes.*;
import static net.filebot.format.Define.*;
import static net.filebot.format.ExpressionFormatMethods.*;
@ -818,7 +819,7 @@ public class MediaBindingBean {
// still no good match found -> just take the most probable video from the same folder
if (videos.size() > 0) {
videos.sort(new SimilarityComparator(FileUtilities.getName(mediaFile)) {
sort(videos, new SimilarityComparator(FileUtilities.getName(mediaFile)) {
@Override
public int compare(Object o1, Object o2) {