Skip to content

Commit fe425c4

Browse files
committed
Javadoc
1 parent d5a831c commit fe425c4

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/main/java/org/apache/commons/imaging/common/BinaryFunctions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ public static int read4Bytes(final String name, final InputStream in, final Stri
197197
}
198198

199199
/**
200-
* Read eight bytes from the specified input stream, adjust for byte order, and return a long integer.
200+
* Reads eight bytes from the specified input stream, adjust for byte order, and return a long integer.
201201
*
202202
* @param name a descriptive identifier used for diagnostic purposes
203203
* @param in a valid input stream

src/main/java/org/apache/commons/imaging/formats/tiff/datareaders/AbstractImageDataReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ protected boolean isHomogenous(final int size) {
302302
}
303303

304304
/**
305-
* Read the image data from the IFD associated with this instance of ImageDataReader using the optional sub-image specification if desired.
305+
* Reads the image data from the IFD associated with this instance of ImageDataReader using the optional sub-image specification if desired.
306306
*
307307
* @param subImageSpecification a rectangle describing a sub-region of the image for reading, or a null if the whole image is to be read.
308308
* @param hasAlpha indicates that the image has an alpha (transparency) channel (RGB color model only).

src/main/java/org/apache/commons/imaging/formats/webp/WebPImageParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ AbstractWebPChunk readChunk() throws ImagingException, IOException {
134134
private static final String[] ACCEPTED_EXTENSIONS = ImageFormats.WEBP.getExtensions();
135135

136136
/**
137-
* Read the file header of WebP file.
137+
* Reads the file header of WebP file.
138138
*
139139
* @return file size in file header (including the WebP signature, excluding the TIFF signature and the file size field).
140140
*/

src/test/java/org/apache/commons/imaging/formats/jpeg/exif/ExifRewriterRoundtripTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
import org.opentest4j.TestSkippedException;
4848

4949
/**
50-
* Read and write EXIF data, and verify that it's identical, and no data corruption occurred.
50+
* Reads and write EXIF data, and verify that it's identical, and no data corruption occurred.
5151
*/
5252
public class ExifRewriterRoundtripTest extends AbstractExifTest {
5353

src/test/java/org/apache/commons/imaging/formats/tiff/TiffFloatingPointReadTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private File getTiffFile(final String name) {
7272
}
7373

7474
/**
75-
* Read a TIFF file using a PhotometricInterpreter with entries for the specified range of values and an arbitrary no-data value. If the image is
75+
* Reads a TIFF file using a PhotometricInterpreter with entries for the specified range of values and an arbitrary no-data value. If the image is
7676
* successfully read, the interpreter instance will be returned.
7777
*
7878
* @param target the specified TIFF file
@@ -108,7 +108,7 @@ private PhotometricInterpreterFloat readAndInterpretTIFF(final File target, fina
108108
}
109109

110110
/**
111-
* Read the floating-point content from a TIFF file.
111+
* Reads the floating-point content from a TIFF file.
112112
*
113113
* @param target the specified TIFF file
114114
* @param params an optional map of parameters for reading.

0 commit comments

Comments
 (0)