Map.java, [...]: Removed redundant modifiers.

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.

From-SVN: r72358
This commit is contained in:
Michael Koch 2003-10-11 18:52:31 +00:00 committed by Michael Koch
parent af6b79a63c
commit 9440ae0c09
5 changed files with 80 additions and 72 deletions

View file

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