SequenceInputStream.java: Rename enum to e because enum is a keyword in Java 1.5.
2004-05-31 Michael Koch <konqueror@gmx.de> * java/io/SequenceInputStream.java: Rename enum to e because enum is a keyword in Java 1.5. From-SVN: r82479
This commit is contained in:
parent
771b9ca31f
commit
58128b9da1
@ -1,3 +1,8 @@
|
||||
2004-05-31 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* java/io/SequenceInputStream.java:
|
||||
Rename enum to e because enum is a keyword in Java 1.5.
|
||||
|
||||
2004-05-31 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* gnu/java/rmi/rmic/CompilerProcess.java:
|
||||
|
@ -71,8 +71,8 @@ public class SequenceInputStream extends InputStream
|
||||
/** Secondary input stream; not used if constructed w/ enumeration. */
|
||||
private InputStream in2;
|
||||
|
||||
/** The enum handle; not used if constructed w/ 2 explicit input streams. */
|
||||
private Enumeration enum;
|
||||
/** The enumeration handle; not used if constructed w/ 2 explicit input streams. */
|
||||
private Enumeration e;
|
||||
|
||||
/**
|
||||
* This method creates a new <code>SequenceInputStream</code> that obtains
|
||||
@ -84,8 +84,8 @@ public class SequenceInputStream extends InputStream
|
||||
*/
|
||||
public SequenceInputStream(Enumeration e)
|
||||
{
|
||||
enum = e;
|
||||
in = (InputStream) enum.nextElement();
|
||||
this.e = e;
|
||||
in = (InputStream) e.nextElement();
|
||||
in2 = null;
|
||||
}
|
||||
|
||||
@ -204,10 +204,10 @@ public class SequenceInputStream extends InputStream
|
||||
{
|
||||
InputStream nextIn = null;
|
||||
|
||||
if (enum != null)
|
||||
if (e != null)
|
||||
{
|
||||
if (enum.hasMoreElements())
|
||||
nextIn = (InputStream) enum.nextElement();
|
||||
if (e.hasMoreElements())
|
||||
nextIn = (InputStream) e.nextElement();
|
||||
}
|
||||
else
|
||||
if (in2 != null)
|
||||
|
Loading…
Reference in New Issue
Block a user