diff options
author | Michael Koch <konqueror@gmx.de> | 2004-10-22 19:34:46 +0000 |
---|---|---|
committer | Michael Koch <konqueror@gmx.de> | 2004-10-22 19:34:46 +0000 |
commit | 8f235b2768ad3ead5c7b1d6fcfd6afd2ee5f3a76 (patch) | |
tree | ce9495b035df923e7b6588e7125a167e9a6fd610 /scripts | |
parent | 8e48c23229c40074e09fa6b16db3970d82fafd13 (diff) | |
download | classpath-8f235b2768ad3ead5c7b1d6fcfd6afd2ee5f3a76.tar.gz |
2004-10-22 Michael Koch <konqueror@gmx.de>
* java/lang/Character.java,
scripts/unicode-blocks.pl:
Reordered modifiers.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/unicode-blocks.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/unicode-blocks.pl b/scripts/unicode-blocks.pl index b65763542..2cea35fb2 100755 --- a/scripts/unicode-blocks.pl +++ b/scripts/unicode-blocks.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w # unicode-blocks.pl -- Script to generate java.lang.Character.UnicodeBlock -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2004 Free Software Foundation, Inc. # # This file is part of GNU Classpath. # @@ -186,7 +186,7 @@ while (<BLOCKS>) { * $block. * $extra'\\u$start' - '\\u$end'.$since */ - public final static UnicodeBlock $name + public static final UnicodeBlock $name = new UnicodeBlock('\\u$start', '\\u$end', "$name"); EOF |