public void run()

in src/main/java/org/apache/maven/plugins/pmd/exec/Executor.java [101:114]


        public void run() {
            byte[] buffer = new byte[BUFFER_SIZE];
            try {
                int count = in.read(buffer);
                while (count != -1) {
                    out.write(buffer, 0, count);
                    out.flush();
                    count = in.read(buffer);
                }
                out.flush();
            } catch (IOException e) {
                LOG.error(e.getMessage(), e);
            }
        }