StringBuffer.java, [...]: Removed redundant and reordered modifiers.

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.

From-SVN: r90177
This commit is contained in:
Michael Koch 2004-11-06 16:32:56 +00:00 committed by Mark Wielaard
parent 08d9302409
commit c2e999dfeb
8 changed files with 60 additions and 50 deletions

View file

@ -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);
}