aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/text/CollationKey.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/text/CollationKey.java')
-rw-r--r--libjava/java/text/CollationKey.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/text/CollationKey.java b/libjava/java/text/CollationKey.java
index 9517756..f7e3148 100644
--- a/libjava/java/text/CollationKey.java
+++ b/libjava/java/text/CollationKey.java
@@ -169,7 +169,7 @@ public final class CollationKey implements Comparable
*
* @return The source <code>String</code> for this object.
*/
- public String getSourceString ()
+ public String getSourceString()
{
return originalText;
}
@@ -181,7 +181,7 @@ public final class CollationKey implements Comparable
*
* @return A hash value for this object.
*/
- public int hashCode ()
+ public int hashCode()
{
// We just follow BitSet instead of thinking up something new.
long h = originalText.hashCode();
@@ -195,7 +195,7 @@ public final class CollationKey implements Comparable
*
* @param A byte array containing the collation bit sequence.
*/
- public byte[] toByteArray ()
+ public byte[] toByteArray()
{
byte[] r = new byte[4 * key.length];
int off = 0;