summaryrefslogtreecommitdiff
path: root/gnu/java/text/FormatCharacterIterator.java
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2005-01-04 23:35:59 +0000
committerTom Tromey <tromey@redhat.com>2005-01-04 23:35:59 +0000
commita8022e1b553cf6520e2f153706852c44e462ccfe (patch)
tree4fa89fc1e1459de8939fb6d42e901740a91f2927 /gnu/java/text/FormatCharacterIterator.java
parent1e7c0b5ef0dd01b41fa6d804503afb286788ff10 (diff)
downloadclasspath-a8022e1b553cf6520e2f153706852c44e462ccfe.tar.gz
* gnu/java/nio/SelectorImpl.java: Removed unused import.
* gnu/java/security/der/DERWriter.java: Removed unused import. * gnu/java/net/protocol/http/Connection.java: Removed unused import. * gnu/java/nio/PipeImpl.java (read): Reordered modifiers. Fixed indentation. (write): Likewise. * gnu/java/rmi/server/ConnectionRunnerPool.java (getConnectionRunner): Reordered modifiers. * gnu/java/text/FormatCharacterIterator.java (debug): Removed useless `final'. (dumpTable): Likewise. * gnu/java/net/PlainDatagramSocketImpl.java (bind): Reordered modifiers. (create, setOption, getOption, close, join, leave): Likewise. * gnu/java/net/PlainSocketImpl.java (create): Reordered modifiers. (bind, listen, accept): Likewise.
Diffstat (limited to 'gnu/java/text/FormatCharacterIterator.java')
-rw-r--r--gnu/java/text/FormatCharacterIterator.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/java/text/FormatCharacterIterator.java b/gnu/java/text/FormatCharacterIterator.java
index 116198bdc..942641a08 100644
--- a/gnu/java/text/FormatCharacterIterator.java
+++ b/gnu/java/text/FormatCharacterIterator.java
@@ -1,6 +1,6 @@
/* FormatCharacter.java -- Implementation of AttributedCharacterIterator for
formatters.
- Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
+ Copyright (C) 1998, 1999, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -494,13 +494,13 @@ public class FormatCharacterIterator implements AttributedCharacterIterator
mergeAttributes(new HashMap[] { null, attributes }, new int[] { range_start, range_end });
}
- final private void debug(String s)
+ private void debug(String s)
{
if (Configuration.DEBUG)
System.out.println(s);
}
- final private void dumpTable()
+ private void dumpTable()
{
int start_range = 0;