* force file order

This commit is contained in:
Reinhard Pointner 2014-11-11 08:51:20 +00:00
parent 3a06c4f7ef
commit 25bf8e1092
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ package net.filebot.web;
import java.io.File;
import java.io.IOException;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Scanner;
import java.util.logging.Level;
@ -28,7 +28,7 @@ public class ID3Lookup implements MusicIdentificationService {
@Override
public Map<File, AudioTrack> lookup(Iterable<File> files) throws Exception {
Map<File, AudioTrack> info = new HashMap<File, AudioTrack>();
Map<File, AudioTrack> info = new LinkedHashMap<File, AudioTrack>();
MediaInfo mediaInfo = new MediaInfo();
for (File f : files) {