PipedInputStream.java (read(byte[],int,int)): Mostly rewrote.
* java/io/PipedInputStream.java (read(byte[],int,int)): Mostly rewrote. (receive): Streamlined. From-SVN: r35556
This commit is contained in:
parent
320f95489d
commit
8ac80386ca
4 changed files with 85 additions and 111 deletions
|
@ -1,4 +1,4 @@
|
|||
/* Copyright (C) 1998, 1999 Free Software Foundation
|
||||
/* Copyright (C) 1998, 1999, 2000 Free Software Foundation
|
||||
|
||||
This file is part of libgcj.
|
||||
|
||||
|
@ -253,10 +253,13 @@ public final class Field extends AccessibleObject implements Member
|
|||
StringBuffer sbuf = new StringBuffer ();
|
||||
int mods = getModifiers();
|
||||
if (mods != 0)
|
||||
Modifier.toString(mods, sbuf);
|
||||
{
|
||||
Modifier.toString(mods, sbuf);
|
||||
sbuf.append(' ');
|
||||
}
|
||||
sbuf.append(getType());
|
||||
sbuf.append(' ');
|
||||
sbuf.append(getDeclaringClass());
|
||||
sbuf.append(getDeclaringClass().getName());
|
||||
sbuf.append('.');
|
||||
sbuf.append(getName());
|
||||
return sbuf.toString();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue