javadoc fixes part 2 (ticket #1894)

This commit is contained in:
zzz
2017-01-26 20:45:58 +00:00
parent f77fc52ca7
commit 8bb114e9c4
7 changed files with 19 additions and 19 deletions

View File

@@ -37,7 +37,7 @@ public abstract class ZipFileComment {
* @return empty string if no comment, or the comment.
* The string is decoded with UTF-8
*
* @throws IOE if no valid end-of-central-directory record found
* @throws IOException if no valid end-of-central-directory record found
*/
public static String getComment(File file, int max) throws IOException {
return getComment(file, max, 0);
@@ -53,7 +53,7 @@ public abstract class ZipFileComment {
* @return empty string if no comment, or the comment.
* The string is decoded with UTF-8
*
* @throws IOE if no valid end-of-central-directory record found
* @throws IOException if no valid end-of-central-directory record found
*/
public static String getComment(File file, int max, int skip) throws IOException {
if (!file.exists())