html-convert/src/main/java/org/netbeans/tools/tutorials/CustomAsciiDocDocumentBuilder.java [88:95]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public void close() throws IOException {
            Writer thisContent = popWriter();
            String content = thisContent.toString();
            if (content.length() > 0) {
                emitContent(content);
            }
            super.close();
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tutorials-convert/src/main/java/org/netbeans/tools/tutorials/CustomAsciiDocDocumentBuilder.java [96:103]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		public void close() throws IOException {
			Writer thisContent = popWriter();
			String content = thisContent.toString();
			if (content.length() > 0) {
				emitContent(content);
			}
			super.close();
		}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



wiki-convert/src/main/java/wikimedia/html/conversion/CustomAsciiDocDocumentBuilder.java [73:80]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public void close() throws IOException {
            Writer thisContent = popWriter();
            String content = thisContent.toString();
            if (content.length() > 0) {
                emitContent(content);
            }
            super.close();
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



wiki-convert/src/main/java/wikimedia/html/conversion/GithubMarkdownDocumentBuilder.java [77:84]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public void close() throws IOException {
            Writer thisContent = popWriter();
            String content = thisContent.toString();
            if (content.length() > 0) {
                emitContent(content);
            }
            super.close();
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



