fix DataLoader (!)
[nikiroo-utils.git] / src / be / nikiroo / fanfix / supported / BasicSupport_Deprecated.java
index e22724a20aad5634fb38523dac7d9ddc231cf25f..d1dbc00b4595d3517f20f4cd0a50dc449b4cfc36 100644 (file)
@@ -40,7 +40,6 @@ import be.nikiroo.utils.StringUtils;
 @Deprecated
 public abstract class BasicSupport_Deprecated extends BasicSupport {
        private InputStream in;
-       private URL currentReferer; // with only one 'r', as in 'HTTP'...
 
        // quote chars
        private char openQuote = Instance.getTrans().getCharacter(
@@ -75,6 +74,7 @@ public abstract class BasicSupport_Deprecated extends BasicSupport {
                throw new RuntimeException("should not be used by legacy code");
        }
 
+       @Override
        public Story process(Progress pg) throws IOException {
                return process(getSource(), pg);
        }
@@ -681,7 +681,6 @@ public abstract class BasicSupport_Deprecated extends BasicSupport {
                        // try for files
                        if (source != null) {
                                try {
-
                                        String relPath = null;
                                        String absPath = null;
                                        try {
@@ -1128,7 +1127,7 @@ public abstract class BasicSupport_Deprecated extends BasicSupport {
         *            the line to return based upon the target line position (-1 =
         *            the line before, 0 = the target line...)
         * 
-        * @return the line
+        * @return the line, or NULL if not found
         */
        static protected String getLine(InputStream in, String needle,
                        int relativeLine) {
@@ -1152,7 +1151,7 @@ public abstract class BasicSupport_Deprecated extends BasicSupport {
         *            takes the first result (as opposed to the last one, which will
         *            also always spend the input)
         * 
-        * @return the line
+        * @return the line, or NULL if not found
         */
        static protected String getLine(InputStream in, String needle,
                        int relativeLine, boolean first) {