-
Bug
-
Resolution: Fixed
-
P3
-
1.1.4
-
1.1.6
-
sparc
-
solaris_2.5
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2017170 | 1.2.0 | Norbert Lindenberg | P3 | Resolved | Fixed | 1.2beta3 |
Name: dfC67450 Date: 09/29/97
Javadoc says:
Set the position to getEndIndex() and return the character at that
position.
about char java.text.StringCharacterIterator.last() method.
Should say:
Set the position to getEndIndex() - 1 and return the character at that
position.
------------------------- Here is the source --------------------------
public char last()
{
pos = end - 1;
return text.charAt(pos);
}
public int getEndIndex()
{
return end;
}
---------------------------------------------------------------------------
======================================================================
- backported by
-
JDK-2017170 Javadoc is wrong about char java.text.StringCharacterIterator.last() method
-
- Resolved
-