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
bc6d273e
Commit
bc6d273e
authored
Jan 07, 2001
by
Anthony Green
Committed by
Anthony Green
Jan 07, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bug in URLConnection and correct javadoc annotations in StringBuffer.
From-SVN: r38781
parent
3799607a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
libjava/ChangeLog
+7
-0
libjava/java/lang/StringBuffer.java
+2
-2
libjava/java/net/URLConnection.java
+0
-2
No files found.
libjava/ChangeLog
View file @
bc6d273e
2001-01-07 Anthony Green <green@redhat.com>
* java/net/URLConnection.java (setDoOutput): URLConnection's may
be used for both input and output, so don't clear doInput.
* java/lang/StringBuffer.java: Fix comments.
2001-01-06 Anthony Green <green@redhat.com>
* java/beans/PropertyDescriptor.java: Fix comment.
...
...
libjava/java/lang/StringBuffer.java
View file @
bc6d273e
...
...
@@ -299,7 +299,7 @@ public final class StringBuffer implements Serializable
* @exception NullPointerException if dst is null.
* @exception IndexOutOfBoundsException if any source or target
* indices are out of range.
* @see java.lang.System#array
C
opy(java.lang.Object,int,java.lang.Object,int,int)
* @see java.lang.System#array
c
opy(java.lang.Object,int,java.lang.Object,int,int)
*/
public
synchronized
void
getChars
(
int
srcOffset
,
int
srcEnd
,
char
[]
dst
,
int
dstOffset
)
...
...
@@ -494,7 +494,7 @@ public final class StringBuffer implements Serializable
* <em>capacity</em> of the <code>StringBuffer</code>.
* @return the length of this <code>StringBuffer</code>.
* @see #capacity()
* @see #setLength()
* @see #setLength(
int
)
*/
public
int
length
()
{
...
...
libjava/java/net/URLConnection.java
View file @
bc6d273e
...
...
@@ -204,8 +204,6 @@ public abstract class URLConnection
throw
new
IllegalAccessError
(
"Already connected"
);
doOutput
=
dooutput
;
if
(
doOutput
)
doInput
=
false
;
}
public
boolean
getDoOutput
()
...
...
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