/[classpath]/classpath/java/lang/System.java
ViewVC logotype

Diff of /classpath/java/lang/System.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.21 by tromey, Mon Apr 29 22:01:15 2002 UTC revision 1.22 by tromey, Tue Apr 30 17:44:08 2002 UTC
# Line 212  public final class System Line 212  public final class System
212     * you, however.     * you, however.
213     */     */
214    public static final PrintStream out    public static final PrintStream out
215      = new PrintStream(new BufferedOutputStream (new FileOutputStream(FileDescriptor.out)));      = new PrintStream(new BufferedOutputStream (new FileOutputStream(FileDescriptor.out)), true);
216    /**    /**
217     * The standard output PrintStream.  This is assigned at startup and     * The standard output PrintStream.  This is assigned at startup and
218     * starts its life perfectly valid. Although it is marked final, you can     * starts its life perfectly valid. Although it is marked final, you can
# Line 224  public final class System Line 224  public final class System
224     * you, however.     * you, however.
225     */     */
226    public static final PrintStream err    public static final PrintStream err
227      = new PrintStream(new BufferedOutputStream (new FileOutputStream(FileDescriptor.err)));      = new PrintStream(new BufferedOutputStream (new FileOutputStream(FileDescriptor.err)), true);
228    
229    /**    /**
230     * This class is uninstantiable.     * This class is uninstantiable.

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26