diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-11 18:52:31 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-11 18:52:31 +0000 |
commit | 37ce7288a5a04d9f705354c38f81d0b1a2942df9 (patch) | |
tree | 5c001677d3698578f965909ef5cd1880d2a361d7 /libjava/java/util/zip/Checksum.java | |
parent | 16abb186aeb16885d70d38cb0269cbba79f165dd (diff) | |
download | ppe42-gcc-37ce7288a5a04d9f705354c38f81d0b1a2942df9.tar.gz ppe42-gcc-37ce7288a5a04d9f705354c38f81d0b1a2942df9.zip |
2003-10-11 Michael Koch <konqueror@gmx.de>
* java/util/Map.java,
java/util/Observer.java,
java/util/zip/Checksum.java,
java/util/zip/ZipConstants.java:
Removed redundant modifiers.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72358 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/util/zip/Checksum.java')
-rw-r--r-- | libjava/java/util/zip/Checksum.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/util/zip/Checksum.java b/libjava/java/util/zip/Checksum.java index f018de4baeb..3b01f979edb 100644 --- a/libjava/java/util/zip/Checksum.java +++ b/libjava/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); } |