FormatCharacterIterator.java: Removed redundant modifiers.

2005-02-20  Michael Koch  <konqueror@gmx.de>

	* gnu/java/text/FormatCharacterIterator.java:
	Removed redundant modifiers.

From-SVN: r95300
This commit is contained in:
Michael Koch 2005-02-20 11:26:49 +00:00 committed by Michael Koch
parent a310245f28
commit b7d3bbceb7
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2005-02-20 Michael Koch <konqueror@gmx.de>
* gnu/java/text/FormatCharacterIterator.java:
Removed redundant modifiers.
2005-02-19 Thomas Fitzsimmons <fitzsim@redhat.com>
* jni/gtk-peer/gthread-jni.c (throw): Call g_snprintf instead of

View File

@ -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;