More jDoc, a new BasicElementProcessor
[gofetch.git] / src / be / nikiroo / gofetch / support / LWN.java
index c492d10d21cde68e48f1390db8efcf7b0a10c470..c48ed2a2130b63b5bc81ed3389612e4efdb72ec0 100644 (file)
@@ -167,7 +167,7 @@ public class LWN extends BasicSupport {
        }
 
        private List<String> toLines(Element element) {
-               return toLines(element, new QuoteProcessor() {
+               return toLines(element, new BasicElementProcessor() {
                        @Override
                        public String processText(String text) {
                                while (text.startsWith(">")) { // comments
@@ -201,11 +201,6 @@ public class LWN extends BasicSupport {
 
                                return false;
                        }
-
-                       @Override
-                       public String manualProcessing(Node node) {
-                               return null;
-                       }
                });
        }
 }