Skip to content

Commit

Permalink
Fixed Javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpierce committed Apr 17, 2021
1 parent c9d91a3 commit 7650ab9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,6 @@ private void doLoadComic(final Comic comic, final boolean ignoreMetadata)
}
}

/**
* Loads all archive entries.
*
* @param comic the comic
* @param archiveReference the archive
*/
protected abstract void loadAllFiles(
final Comic comic, final I archiveReference, final boolean ignoreMetadata)
throws ArchiveAdaptorException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public interface ArchiveAdaptor {
* @param filename the archive name
* @param entryName the entry name
* @return the content
* @throws ArchiveAdaptorException
* @throws ArchiveAdaptorException if an error occurs
*/
byte[] loadSingleFile(String filename, String entryName) throws ArchiveAdaptorException;

Expand All @@ -86,6 +86,7 @@ public interface ArchiveAdaptor {
* @param renamePages true rename pages
* @return the new comic
* @throws ArchiveAdaptorException if an error occurs
* @throws IOException if an error occurs
*/
Comic saveComic(Comic comic, boolean renamePages) throws ArchiveAdaptorException, IOException;

Expand Down

0 comments on commit 7650ab9

Please sign in to comment.