- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/io/OutputStreamWriter.java (modified) (4 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/io/OutputStreamWriter.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 /* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation1 /* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation 2 2 3 3 This file is part of libgcj. … … 29 29 private int wcount; 30 30 31 public String getEncoding() { return converter.getName(); } 31 public String getEncoding() 32 { 33 return out != null ? converter.getName() : null; 34 } 32 35 33 36 private OutputStreamWriter(OutputStream out, UnicodeToBytes encoder) … … 104 107 throws IOException 105 108 { 106 while (count > 0 )109 while (count > 0) 107 110 { 108 111 // We must flush if out.count == out.buf.length. … … 117 120 converter.setOutput(out.buf, out.count); 118 121 int converted = converter.write(buf, offset, count); 122 123 124 125 126 127 128 119 129 offset += converted; 120 130 count -= converted; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
