summaryrefslogtreecommitdiff
path: root/libjava/classpath/java/text/ParsePosition.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/java/text/ParsePosition.java')
-rw-r--r--libjava/classpath/java/text/ParsePosition.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/classpath/java/text/ParsePosition.java b/libjava/classpath/java/text/ParsePosition.java
index b0a8a4a0b36..80652161d30 100644
--- a/libjava/classpath/java/text/ParsePosition.java
+++ b/libjava/classpath/java/text/ParsePosition.java
@@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
-
+
GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
@@ -123,7 +123,7 @@ public class ParsePosition
* </ul>
*
* @param obj The <code>Object</code> to test for equality against
- * this object.
+ * this object.
*
* @return <code>true</code> if the specified object is equal to
* this object, <code>false</code> otherwise.
@@ -136,7 +136,7 @@ public class ParsePosition
ParsePosition other = (ParsePosition) obj;
return index == other.index && error_index == other.error_index;
}
-
+
/**
* Return the hash code for this object.
* @return the hash code
@@ -155,6 +155,6 @@ public class ParsePosition
public String toString ()
{
return (getClass ().getName () + "[index=" + getIndex ()
- + ",errorIndex=" + getErrorIndex () + "]");
+ + ",errorIndex=" + getErrorIndex () + "]");
}
}