src/main/java/org/apache/tomee/website/AddAsciidocCodeblocks.java [67:90]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        try {
            final List<String> lines = new ArrayList<>();
            Collections.addAll(lines, IO.slurp(destReadme).split("\n"));

            for (final String line : lines) {
                fix.process(line);
            }

            try {
                fix.process((String) null);
            } catch (Exception e) {
                System.out.println("Failed " + destReadme.getAbsolutePath() + " " + e.getMessage());
            }

            // Update the destination readme file
            IO.copy(IO.read(Join.join("\n", fix.completed) + "\n"), destReadme);

        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }

    private void process(final String line) {
        processor.accept(line);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/tomee/website/GuessAsciidocCodeblockLanguage.java [52:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        try {
            final List<String> lines = new ArrayList<>();
            Collections.addAll(lines, IO.slurp(destReadme).split("\n"));

            for (final String line : lines) {
                fix.process(line);
            }

            try {
                fix.process((String) null);
            } catch (Exception e) {
                System.out.println("Failed " + destReadme.getAbsolutePath() + " " + e.getMessage());
            }

            // Update the destination readme file
            IO.copy(IO.read(Join.join("\n", fix.completed) + "\n"), destReadme);

        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }

    private void process(final String line) {
        processor.accept(line);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



