Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
c5afc192
Commit
c5afc192
authored
Dec 11, 2000
by
Bryce McKinlay
Committed by
Bryce McKinlay
Dec 11, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* java/util/Hashtable.java (Enumerator.nextElement): Initialize `e'.
From-SVN: r38185
parent
0aa9764b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
7 deletions
+9
-7
libjava/ChangeLog
+2
-0
libjava/java/util/Hashtable.java
+7
-7
No files found.
libjava/ChangeLog
View file @
c5afc192
...
...
@@ -2,6 +2,8 @@
* configure.in: Remove check for -fuse-divide-subroutine.
* configure: Rebuilt.
* java/util/Hashtable.java (Enumerator.nextElement): Initialize `e'.
2000-12-11 Bryce McKinlay <bryce@albatross.co.nz>
...
...
libjava/java/util/Hashtable.java
View file @
c5afc192
...
...
@@ -64,8 +64,8 @@ import java.io.ObjectOutputStream;
* @author Jon Zeppieri
* @author Warren Levy
* @author Bryce McKinlay
* @version $Revision: 1.
6
$
* @modified $Id: Hashtable.java,v 1.
6 2000/08/19 18:19:42 green
Exp $
* @version $Revision: 1.
7
$
* @modified $Id: Hashtable.java,v 1.
7 2000/12/11 03:47:47 bryce
Exp $
*/
public
class
Hashtable
extends
Dictionary
implements
Map
,
Cloneable
,
Serializable
...
...
@@ -724,8 +724,8 @@ public class Hashtable extends Dictionary
* as per the Javasoft spec.
*
* @author Jon Zeppieri
* @version $Revision: 1.
8
$
* @modified $Id: Hash
Map.java,v 1.8 2000/10/26 10:19:00
bryce Exp $
* @version $Revision: 1.
7
$
* @modified $Id: Hash
table.java,v 1.7 2000/12/11 03:47:47
bryce Exp $
*/
class
HashIterator
implements
Iterator
{
...
...
@@ -829,8 +829,8 @@ public class Hashtable extends Dictionary
* hashtable during enumeration causes indeterminate results. Don't do it!
*
* @author Jon Zeppieri
* @version $Revision: 1.
6
$
* @modified $Id: Hashtable.java,v 1.
6 2000/08/19 18:19:42 green
Exp $ */
* @version $Revision: 1.
7
$
* @modified $Id: Hashtable.java,v 1.
7 2000/12/11 03:47:47 bryce
Exp $ */
class
Enumerator
implements
Enumeration
{
static
final
int
KEYS
=
0
;
...
...
@@ -862,7 +862,7 @@ public class Hashtable extends Dictionary
if
(
count
>=
size
)
throw
new
NoSuchElementException
();
count
++;
HashMap
.
Entry
e
;
HashMap
.
Entry
e
=
null
;
if
(
last
!=
null
)
e
=
last
.
next
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment