diff options
author | mark <mark@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-06 16:32:56 +0000 |
---|---|---|
committer | mark <mark@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-06 16:32:56 +0000 |
commit | d8bcd2536ff21bcec0896f20cb2f1249de05da92 (patch) | |
tree | aff38876d319e5c2226533f8778d4e434e4a7110 /libjava/java/util/zip/ZipInputStream.java | |
parent | 511a08fd190be53ddcec991e3ef7ef37434488c2 (diff) | |
download | ppe42-gcc-d8bcd2536ff21bcec0896f20cb2f1249de05da92.tar.gz ppe42-gcc-d8bcd2536ff21bcec0896f20cb2f1249de05da92.zip |
2004-11-06 Michael Koch <konqueror@gmx.de>
* java/lang/StringBuffer.java,
java/lang/Throwable.java,
java/security/spec/DSAParameterSpec.java,
java/util/zip/ZipEntry.java,
java/util/zip/ZipFile.java,
java/util/zip/ZipInputStream.java,
java/util/zip/ZipOutputStream.java:
Removed redundant and reordered modifiers.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90177 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/util/zip/ZipInputStream.java')
-rw-r--r-- | libjava/java/util/zip/ZipInputStream.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/util/zip/ZipInputStream.java b/libjava/java/util/zip/ZipInputStream.java index 40ba8055b51..3cc67516e2a 100644 --- a/libjava/java/util/zip/ZipInputStream.java +++ b/libjava/java/util/zip/ZipInputStream.java @@ -106,7 +106,7 @@ public class ZipInputStream extends InflaterInputStream implements ZipConstants } } - private final int readLeByte() throws IOException + private int readLeByte() throws IOException { if (avail <= 0) { @@ -120,7 +120,7 @@ public class ZipInputStream extends InflaterInputStream implements ZipConstants /** * Read an unsigned short in little endian byte order. */ - private final int readLeShort() throws IOException + private int readLeShort() throws IOException { return readLeByte() | (readLeByte() << 8); } @@ -128,7 +128,7 @@ public class ZipInputStream extends InflaterInputStream implements ZipConstants /** * Read an int in little endian byte order. */ - private final int readLeInt() throws IOException + private int readLeInt() throws IOException { return readLeShort() | (readLeShort() << 16); } |