This is the mail archive of the
java-patches@sources.redhat.com
mailing list for the Java project.
Re: Patch: java.io.Printwriter
- To: Mark Wielaard <mark at klomp dot org>
- Subject: Re: Patch: java.io.Printwriter
- From: Tom Tromey <tromey at cygnus dot com>
- Date: 23 Aug 2000 16:22:12 -0600
- Cc: Java Patch List <java-patches at sourceware dot cygnus dot com>
- References: <20000824000651.A29228@klomp.org>
- Reply-To: tromey at cygnus dot com
Mark> I just checked in the following patch into Classpath.
Mark> OK to check into libgcj?
For merged classes I think we should always remain in sync.
In other words, updates of merged classes are preapproved.
(Well, provided they aren't exceptional, like breaking the build or
something.)
Mark> public void print(String str)
Mark> {
Mark> - try
Mark> - {
Mark> write(str == null ? "null" : str);
This line should lose a 4 leading spaces.
Tom