diff options
| author | Michael Koch <konqueror@gmx.de> | 2003-11-04 10:04:15 +0000 |
|---|---|---|
| committer | Michael Koch <konqueror@gmx.de> | 2003-11-04 10:04:15 +0000 |
| commit | 9deef84a0d72d469a5a6f94997886d45e7ddc36b (patch) | |
| tree | 98c47c0b2ca1961e21e77759e909277fb996dbb8 /java/util/zip/Checksum.java | |
| parent | 88f3239234bb0062cc0e8143b6f76742462cac19 (diff) | |
| download | classpath-9deef84a0d72d469a5a6f94997886d45e7ddc36b.tar.gz | |
2003-11-04 Michael Koch <konqueror@gmx.de>
* java/util/zip/Checksum.java,
java/util/zip/ZipConstants.java:
Removed redundant modifiers.
* java/util/zip/InflaterInputStream.java:
Merged copyright with libgcj's version.
Diffstat (limited to 'java/util/zip/Checksum.java')
| -rw-r--r-- | java/util/zip/Checksum.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/util/zip/Checksum.java b/java/util/zip/Checksum.java index f018de4ba..3b01f979e 100644 --- a/java/util/zip/Checksum.java +++ b/java/util/zip/Checksum.java @@ -61,19 +61,19 @@ public interface Checksum /** * Returns the data checksum computed so far. */ - public long getValue (); + long getValue(); /** * Resets the data checksum as if no update was ever called. */ - public void reset (); + void reset(); /** * Adds one byte to the data checksum. * * @param bval the data value to add. The high byte of the int is ignored. */ - public void update (int bval); + void update (int bval); /** * Adds the byte array to the data checksum. @@ -82,5 +82,5 @@ public interface Checksum * @param off the offset in the buffer where the data starts * @param len the length of the data */ - public void update (byte[] buf, int off, int len); + void update (byte[] buf, int off, int len); } |
