diff options
author | Michael Koch <mkoch@gcc.gnu.org> | 2004-10-18 12:22:51 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2004-10-18 12:22:51 +0000 |
commit | 2c661756f45c5fb1fa6e886b55ef43e2fefce5aa (patch) | |
tree | 0744e959e63d1b1704ac5749be0d6aa79a9a5785 /libjava/java/text | |
parent | 2cd0e9f4ed39c4040861c446f2cc50b62381715f (diff) | |
download | gcc-2c661756f45c5fb1fa6e886b55ef43e2fefce5aa.zip gcc-2c661756f45c5fb1fa6e886b55ef43e2fefce5aa.tar.gz gcc-2c661756f45c5fb1fa6e886b55ef43e2fefce5aa.tar.bz2 |
[multiple changes]
2004-10-18 Michael Koch <konqueror@gmx.de>
* gnu/java/net/protocol/http/Connection.java,
java/nio/MappedByteBufferImpl.java,
java/text/RuleBasedCollator.java,
java/util/ResourceBundle.java:
Reworked import statements.
2004-10-18 Jeroen Frijters <jeroen@frijters.net>
* java/security/IdentityScope.java
(systemScope): Removed useless initializer.
* java/security/Policy.java
(currentPolicy): Likewise.
From-SVN: r89210
Diffstat (limited to 'libjava/java/text')
-rw-r--r-- | libjava/java/text/RuleBasedCollator.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/java/text/RuleBasedCollator.java b/libjava/java/text/RuleBasedCollator.java index 061d97d..8b7fe16 100644 --- a/libjava/java/text/RuleBasedCollator.java +++ b/libjava/java/text/RuleBasedCollator.java @@ -35,11 +35,11 @@ this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ + package java.text; -import java.util.Enumeration; -import java.util.HashMap; import java.util.ArrayList; +import java.util.HashMap; /* Written using "Java Class Libraries", 2nd edition, plus online * API docs for JDK 1.2 from http://www.javasoft.com. |