Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
49c24f00
Commit
49c24f00
authored
Dec 15, 2000
by
Tom Tromey
Committed by
Tom Tromey
Dec 15, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* java/io/StringWriter.java (StringWriter(int)): Now public.
From-SVN: r38271
parent
f2edab0e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
libjava/ChangeLog
+2
-0
libjava/java/io/StringWriter.java
+4
-4
No files found.
libjava/ChangeLog
View file @
49c24f00
2000-12-14 Tom Tromey <tromey@redhat.com>
* java/io/StringWriter.java (StringWriter(int)): Now public.
* java/io/SerializablePermission.java (legal_names): Now private.
* java/lang/Character.java: Updated UnicodeBlock constants.
...
...
libjava/java/io/StringWriter.java
View file @
49c24f00
// StringWriter.java - StringBuffer output stream
/* Copyright (C) 1998, 1999 Free Software Foundation
/* Copyright (C) 1998, 1999
, 2000
Free Software Foundation
This file is part of libgcj.
...
...
@@ -17,7 +17,7 @@ package java.io;
/* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
* "The Java Language Specification", ISBN 0-201-63451-1
* Status: Complete to 1.
1
.
* Status: Complete to 1.
2
.
*/
public
class
StringWriter
extends
Writer
...
...
@@ -25,7 +25,7 @@ public class StringWriter extends Writer
public
void
close
()
{
// JCL says this does nothing. This seems to violate the Writer
// contract, in that other methods should still throw an
d
// contract, in that other methods should still throw an
// IOException after a close. Still, we just follow JCL.
}
...
...
@@ -43,7 +43,7 @@ public class StringWriter extends Writer
this
(
16
);
}
p
rotected
StringWriter
(
int
size
)
p
ublic
StringWriter
(
int
size
)
{
super
();
buffer
=
new
StringBuffer
(
size
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment