* JDK7 compatibility
This commit is contained in:
parent
c711e4543c
commit
acbe8c9354
|
@ -1,6 +1,7 @@
|
||||||
package net.filebot.format;
|
package net.filebot.format;
|
||||||
|
|
||||||
import static java.util.Arrays.*;
|
import static java.util.Arrays.*;
|
||||||
|
import static java.util.Collections.*;
|
||||||
import static net.filebot.MediaTypes.*;
|
import static net.filebot.MediaTypes.*;
|
||||||
import static net.filebot.format.Define.*;
|
import static net.filebot.format.Define.*;
|
||||||
import static net.filebot.format.ExpressionFormatMethods.*;
|
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
|
// still no good match found -> just take the most probable video from the same folder
|
||||||
if (videos.size() > 0) {
|
if (videos.size() > 0) {
|
||||||
videos.sort(new SimilarityComparator(FileUtilities.getName(mediaFile)) {
|
sort(videos, new SimilarityComparator(FileUtilities.getName(mediaFile)) {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int compare(Object o1, Object o2) {
|
public int compare(Object o1, Object o2) {
|
||||||
|
|
Loading…
Reference in New Issue