Fixed JavaDoc errors to enable Java 8 build.

This commit is contained in:
Harald Kuhr
2019-08-10 00:41:36 +02:00
parent 7d2c692663
commit 9e23413456
168 changed files with 34586 additions and 34396 deletions

View File

@@ -75,8 +75,9 @@ public final class Catalog implements Iterable<Catalog.CatalogItem> {
/**
* Reads the {@code Catalog} entry from the given input stream.
* <p/>
* <p>
* The data is assumed to be in little endian byte order.
* </p>
*
* @param pDataInput the input stream
* @return a new {@code Catalog}

View File

@@ -62,7 +62,7 @@ import java.util.SortedSet;
* @author last modified by $Author: haku$
* @version $Id: ThumbsDBImageReader.java,v 1.0 22.jan.2007 18:49:38 haku Exp$
* @see com.twelvemonkeys.io.ole2.CompoundDocument
* @see <a href="http://en.wikipedia.org/wiki/Thumbs.db>Wikipedia: Thumbs.db</a>
* @see <a href="http://en.wikipedia.org/wiki/Thumbs.db">Wikipedia: Thumbs.db</a>
*/
public final class ThumbsDBImageReader extends ImageReaderBase {
private static final int THUMBNAIL_OFFSET = 12;
@@ -107,10 +107,11 @@ public final class ThumbsDBImageReader extends ImageReaderBase {
/**
* Instructs the reader wether it should read and cache alle thumbnails
* in sequence, during the first read operation.
* <p/>
* <p>
* This is useful mainly if you need to read all the thumbnails, and you
* need them in random order, as it requires less repositioning in the
* underlying stream.
* </p>
*
* @param pLoadEagerly {@code true} if the reader should read all thumbs on first read
*/

View File

@@ -46,7 +46,6 @@ import static com.twelvemonkeys.imageio.util.IIOUtil.lookupProviderByName;
/**
* ThumbsDBImageReaderSpi
* <p/>
*
* @author <a href="mailto:harald.kuhr@gmail.com">Harald Kuhr</a>
* @version $Id: ThumbsDBImageReaderSpi.java,v 1.0 28.feb.2006 19:21:05 haku Exp$