6881337: ZipEntry.setComment() was accidentally changed back to old spec/impl in jdk7-b64
authorsherman
Fri Sep 11 16:36:22 2009 -0700 (6 months ago)
changeset 162546406871599c
parent 1624f1eb4c28b313
child 1626020a0fed38c9
6881337: ZipEntry.setComment() was accidentally changed back to old spec/impl in jdk7-b64
Summary: restored the correct spec and implementation of setComment
Reviewed-by: martin
src/share/classes/java/util/zip/ZipEntry.java
--- a/src/share/classes/java/util/zip/ZipEntry.java Wed Sep 09 20:15:22 2009 -0400
+++ b/src/share/classes/java/util/zip/ZipEntry.java Fri Sep 11 16:36:22 2009 -0700
@@ -253,14 +253,10 @@ class ZipEntry implements ZipConstants,
* the first 0xFFFF bytes are output to the ZIP file entry.
*
* @param comment the comment string
- * @exception IllegalArgumentException if the length of the specified
- * comment string is greater than 0xFFFF bytes
+ *
* @see #getComment()
*/
public void setComment(String comment) {
- if (comment != null && comment.length() > 0xffff) {
- throw new IllegalArgumentException("invalid entry comment length");
- }
this.comment = comment;
}