summaryrefslogtreecommitdiff
path: root/java/util/zip/ZipInputStream.java
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2003-02-12 01:25:03 +0000
committerTom Tromey <tromey@redhat.com>2003-02-12 01:25:03 +0000
commited3bfeaa4de9297e71731fceceff75f8a4336d5e (patch)
treee2200ef6dc11e75c29c921f0e1cf51673af15e58 /java/util/zip/ZipInputStream.java
parentbc82d75220d0ca508d0f940dae518da3c50300ae (diff)
downloadclasspath-ed3bfeaa4de9297e71731fceceff75f8a4336d5e.tar.gz
* java/util/zip/ZipInputStream.java (read): Fixed indentation.
Diffstat (limited to 'java/util/zip/ZipInputStream.java')
-rw-r--r--java/util/zip/ZipInputStream.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/util/zip/ZipInputStream.java b/java/util/zip/ZipInputStream.java
index 789a7c60e..2fba9f556 100644
--- a/java/util/zip/ZipInputStream.java
+++ b/java/util/zip/ZipInputStream.java
@@ -1,5 +1,5 @@
/* java.util.zip.ZipInputStream
- Copyright (C) 2001, 2002 Free Software Foundation, Inc.
+ Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -286,8 +286,8 @@ public class ZipInputStream extends InflaterInputStream implements ZipConstants
*/
public int read(byte[] b, int off, int len) throws IOException
{
- if(len == 0)
- return 0;
+ if (len == 0)
+ return 0;
if (crc == null)
throw new IOException("Stream closed.");
if (entry == null)