]> gitweb.fperrin.net Git - DictionaryPC.git/blobdiff - src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java
Split ZH into yue and cmn, fixed German heading.
[DictionaryPC.git] / src / com / hughes / android / dictionary / parser / wiktionary / WholeSectionToHtmlParser.java
index 21a83e494dffabd16cb51486948c18fdc20dd540..8dcaf714eb6ff5c7c3f510d13fd747e673d17bb4 100644 (file)
@@ -365,14 +365,14 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
             sectionEntryTypeName = langConfig.sectionNameToEntryType(headingText);
             final int depth = wikiTokenizer.headingDepth();
             if (langConfig.skipSection(headingText)) {
-                System.out.println("Skipping section:" + headingText);
+                //System.out.println("Skipping section:" + headingText);
                 while ((wikiTokenizer = wikiTokenizer.nextToken()) != null) {
                     if (wikiTokenizer.isHeading() && wikiTokenizer.headingDepth() <= depth) {
-                        System.out.println("Resume on: " + wikiTokenizer.token());
+                        // System.out.println("Resume on: " + wikiTokenizer.token());
                         wikiTokenizer.returnToLineStart();
                         return;
                     } else {
-                        System.out.println("Skipped: " + wikiTokenizer.token());
+                        // System.out.println("Skipped: " + wikiTokenizer.token());
                     }
                 }
                 return;