Makefile: remove man in mrpropre
[nikiroo-utils.git] / supported / InfoText.java
diff --git a/supported/InfoText.java b/supported/InfoText.java
deleted file mode 100644 (file)
index 2af8c7e..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-package be.nikiroo.fanfix.supported;
-
-import java.io.File;
-import java.io.IOException;
-import java.net.URL;
-
-import be.nikiroo.fanfix.data.MetaData;
-
-/**
- * Support class for <tt>.info</tt> text files ({@link Text} files with a
- * <tt>.info</tt> metadata file next to them).
- * <p>
- * The <tt>.info</tt> file is supposed to be written by this program, or
- * compatible.
- * 
- * @author niki
- */
-class InfoText extends Text {
-       protected File getInfoFile() {
-               return new File(assureNoTxt(getSourceFile()).getPath() + ".info");
-       }
-
-       @Override
-       protected MetaData getMeta() throws IOException {
-               return InfoReader.readMeta(getInfoFile(), true);
-       }
-
-       @Override
-       protected boolean supports(URL url) {
-               return supports(url, true);
-       }
-}