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
27d645f7
Commit
27d645f7
authored
May 19, 2003
by
Michael Koch
Committed by
Michael Koch
May 19, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2003-05-19 Michael Koch <konqueror@gmx.de>
* java/nio/CharBuffer.java (toString): Compile fix. From-SVN: r66953
parent
21c9500d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
+8
-1
libjava/ChangeLog
+5
-0
libjava/java/nio/CharBuffer.java
+3
-1
No files found.
libjava/ChangeLog
View file @
27d645f7
2003
-
05
-
19
Michael
Koch
<
konqueror
@
gmx
.
de
>
*
java
/
nio
/
CharBuffer
.
java
(
toString
):
Compile
fix
.
2003
-
05
-
19
Michael
Koch
<
konqueror
@
gmx
.
de
>
*
gnu
/
java
/
nio
/
ByteBufferImpl
.
java
(
putLong
):
Fixed
conversion
to
bytes
.
(
putDouble
):
Fixed
conversion
to
bytes
.
...
...
libjava/java/nio/CharBuffer.java
View file @
27d645f7
...
...
@@ -426,7 +426,9 @@ public abstract class CharBuffer extends Buffer
return
new
String
(
array
(),
position
(),
length
());
char
[]
buf
=
new
char
[
length
()];
get
(
position
(),
buf
);
int
pos
=
position
();
get
(
buf
,
0
,
buf
.
length
);
position
(
pos
);
return
new
String
(
buf
);
}
...
...
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