diff options
author | Bryce McKinlay <mckinlay@redhat.com> | 2000-10-26 10:19:00 +0000 |
---|---|---|
committer | Bryce McKinlay <mckinlay@redhat.com> | 2000-10-26 10:19:00 +0000 |
commit | 4443ab35dd2c68367528f36611a87da9a54bbc58 (patch) | |
tree | ffc26be2ff24337dd78857d26bb947e4f71b5353 /java/util/HashMap.java | |
parent | 2186f8410c2d5bdf5963bd8a270ff5b1cef8af52 (diff) | |
download | classpath-4443ab35dd2c68367528f36611a87da9a54bbc58.tar.gz |
2000-10-26 Bryce McKinlay <bryce@albatross.co.nz>
* java/util/*.java: Fix indentation on copyright notices.
* java/util/jar/*.java: Ditto.
Diffstat (limited to 'java/util/HashMap.java')
-rw-r--r-- | java/util/HashMap.java | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/java/util/HashMap.java b/java/util/HashMap.java index 120b69e43..89c3df13b 100644 --- a/java/util/HashMap.java +++ b/java/util/HashMap.java @@ -2,28 +2,28 @@ mapping Object --> Object Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. - This file is part of GNU Classpath. +This file is part of GNU Classpath. - GNU Classpath is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2, or (at your option) - any later version. +GNU Classpath is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. - GNU Classpath is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. +GNU Classpath is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License for more details. - You should have received a copy of the GNU General Public License - along with GNU Classpath; see the file COPYING. If not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA - 02111-1307 USA. +You should have received a copy of the GNU General Public License +along with GNU Classpath; see the file COPYING. If not, write to the +Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +02111-1307 USA. - As a special exception, if you link this library with other files to - produce an executable, this library does not by itself cause the - resulting executable to be covered by the GNU General Public License. - This exception does not however invalidate any other reasons why the - executable file might be covered by the GNU General Public License. */ +As a special exception, if you link this library with other files to +produce an executable, this library does not by itself cause the +resulting executable to be covered by the GNU General Public License. +This exception does not however invalidate any other reasons why the +executable file might be covered by the GNU General Public License. */ package java.util; @@ -57,8 +57,8 @@ import java.io.ObjectStreamField; * does not support "Enumeration views." * * @author Jon Zeppieri - * @version $Revision: 1.7 $ - * @modified $Id: HashMap.java,v 1.7 2000-10-24 10:07:49 bryce Exp $ + * @version $Revision: 1.8 $ + * @modified $Id: HashMap.java,v 1.8 2000-10-26 10:19:00 bryce Exp $ */ public class HashMap extends AbstractMap implements Map, Cloneable, Serializable @@ -534,8 +534,8 @@ public class HashMap extends AbstractMap * overriding a number of them. And so I did. * * @author Jon Zeppieri - * @version $Revision: 1.7 $ - * @modified $Id: HashMap.java,v 1.7 2000-10-24 10:07:49 bryce Exp $ + * @version $Revision: 1.8 $ + * @modified $Id: HashMap.java,v 1.8 2000-10-26 10:19:00 bryce Exp $ */ private class HashMapSet extends AbstractSet implements Set { @@ -634,8 +634,8 @@ public class HashMap extends AbstractMap * in the HashMap * * @author Jon Zeppieri - * @version $Revision: 1.7 $ - * @modified $Id: HashMap.java,v 1.7 2000-10-24 10:07:49 bryce Exp $ + * @version $Revision: 1.8 $ + * @modified $Id: HashMap.java,v 1.8 2000-10-26 10:19:00 bryce Exp $ */ private class HashMapCollection extends AbstractCollection implements Collection @@ -711,8 +711,8 @@ public class HashMap extends AbstractMap * as per the Javasoft spec. * * @author Jon Zeppieri - * @version $Revision: 1.7 $ - * @modified $Id: HashMap.java,v 1.7 2000-10-24 10:07:49 bryce Exp $ + * @version $Revision: 1.8 $ + * @modified $Id: HashMap.java,v 1.8 2000-10-26 10:19:00 bryce Exp $ */ class HashMapIterator implements Iterator { @@ -816,8 +816,8 @@ public class HashMap extends AbstractMap * is used to represent the null key in HashMap objects * * @author Jon Zeppieri - * @version $Revision: 1.7 $ - * @modified $Id: HashMap.java,v 1.7 2000-10-24 10:07:49 bryce Exp $ + * @version $Revision: 1.8 $ + * @modified $Id: HashMap.java,v 1.8 2000-10-26 10:19:00 bryce Exp $ */ private static class Null { @@ -835,8 +835,8 @@ public class HashMap extends AbstractMap * Simply, a key / value pair * * @author Jon Zeppieri - * @version $Revision: 1.7 $ - * @modified $Id: HashMap.java,v 1.7 2000-10-24 10:07:49 bryce Exp $ + * @version $Revision: 1.8 $ + * @modified $Id: HashMap.java,v 1.8 2000-10-26 10:19:00 bryce Exp $ */ private static class HashMapEntry extends Bucket.Node implements Map.Entry { |