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
d3d40e23
Commit
d3d40e23
authored
Apr 30, 2003
by
Michael Koch
Committed by
Michael Koch
Apr 30, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2003-04-30 Michael Koch <konqueror@gmx.de>
* java/text/BreakIterator.java (clone): New method. From-SVN: r66289
parent
70ff9d90
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
libjava/ChangeLog
+5
-0
libjava/java/text/BreakIterator.java
+15
-0
No files found.
libjava/ChangeLog
View file @
d3d40e23
2003
-
04
-
30
Michael
Koch
<
konqueror
@
gmx
.
de
>
*
java
/
text
/
BreakIterator
.
java
(
clone
):
New
method
.
2003
-
04
-
30
Michael
Koch
<
konqueror
@
gmx
.
de
>
*
java
/
text
/
CollationElementIterator
.
java
,
java
/
text
/
CollationKey
.
java
,
java
/
text
/
RuleBasedCollator
.
java
:
...
...
libjava/java/text/BreakIterator.java
View file @
d3d40e23
...
...
@@ -77,6 +77,21 @@ public abstract class BreakIterator implements Cloneable
}
/**
* Create a clone of this object.
*/
public
Object
clone
()
{
try
{
return
super
.
clone
();
}
catch
(
CloneNotSupportedException
e
)
{
return
null
;
}
}
/**
* This method returns the index of the current text element boundary.
*
* @return The current text boundary.
...
...
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