Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for LoggingPrintStream (0.08 seconds)

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

            }
        }
    
        public static class LoggingPrintStream extends PrintStream {
            public LoggingPrintStream(LoggingOutputStream out) {
                super(out, true);
            }
    
            public void forceFlush() {
                ((LoggingOutputStream) out).forceFlush();
            }
        }
    
        public static void forceFlush(PrintStream ps) {
            if (ps instanceof LoggingPrintStream loggingPrintStream) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Feb 12 12:31:43 GMT 2025
    - 3K bytes
    - Click Count (0)
Back to Top