Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isEol (0.03 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/logging/LoggingOutputStream.java

        }
    
        public PrintStream printStream() {
            return new LoggingPrintStream(this);
        }
    
        @Override
        public void write(int b) throws IOException {
            super.write(b);
            if (buf.isEol()) {
                String line = new String(buf.toByteArray(), 0, buf.size() - LINE_SEP.length);
                ProjectBuildLogAppender.updateMdc();
                consumer.accept(line);
                buf.reset();
            }
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Feb 12 12:31:43 UTC 2025
    - 3K bytes
    - Viewed (0)
Back to top