change config bundle to better work with new nikiroo-utils
[fanfix.git] / src / be / nikiroo / fanfix / supported / BasicSupport_Deprecated.java
index 591ba58d1f630727283762de72f9c27a0e4df664..7a652a46adb7000997cb08451ba07f2be6de427e 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(
@@ -392,8 +391,7 @@ public abstract class BasicSupport_Deprecated extends BasicSupport {
                // redundant "Chapter x: " in front of it, or "-" (as in
                // "Chapter 5: - Fun!" after the ": " was automatically added)
                String chapterName = processPara(name).getContent().trim();
-               for (String lang : Instance.getConfig().getString(Config.CHAPTER)
-                               .split(",")) {
+               for (String lang : Instance.getConfig().getList(Config.CHAPTER)) {
                        String chapterWord = Instance.getConfig().getStringX(
                                        Config.CHAPTER, lang);
                        if (chapterName.startsWith(chapterWord)) {
@@ -682,7 +680,6 @@ public abstract class BasicSupport_Deprecated extends BasicSupport {
                        // try for files
                        if (source != null) {
                                try {
-
                                        String relPath = null;
                                        String absPath = null;
                                        try {
@@ -1129,7 +1126,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) {
@@ -1153,7 +1150,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) {