|
|
|
@ -27,8 +27,6 @@ import java.util.HashSet;
|
|
|
|
|
import java.util.Properties;
|
|
|
|
|
import java.util.Set;
|
|
|
|
|
|
|
|
|
|
import net.yacy.kelondro.logging.Log;
|
|
|
|
|
|
|
|
|
|
public class Classification {
|
|
|
|
|
|
|
|
|
|
private static final Set<String> mediaExtSet = new HashSet<String>();
|
|
|
|
@ -98,7 +96,6 @@ public class Classification {
|
|
|
|
|
mimeTableInputStream = new BufferedInputStream(new FileInputStream(mimeFile));
|
|
|
|
|
mimeTable.load(mimeTableInputStream);
|
|
|
|
|
} catch (final Exception e) {
|
|
|
|
|
Log.logException(e);
|
|
|
|
|
} finally {
|
|
|
|
|
if (mimeTableInputStream != null) try { mimeTableInputStream.close(); } catch (final Exception e1) {}
|
|
|
|
|
}
|
|
|
|
|