This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-imaging.git


The following commit(s) were added to refs/heads/master by this push:
     new 6a436293 Better comments
6a436293 is described below

commit 6a43629341d85deef838572cbac58322ceb61728
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Oct 19 10:51:34 2023 -0400

    Better comments
---
 src/main/java/org/apache/commons/imaging/ImageInfo.java               | 2 +-
 .../commons/imaging/formats/tiff/itu_t4/BitInputStreamFlexible.java   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/imaging/ImageInfo.java 
b/src/main/java/org/apache/commons/imaging/ImageInfo.java
index 15d38520..d3e8f840 100644
--- a/src/main/java/org/apache/commons/imaging/ImageInfo.java
+++ b/src/main/java/org/apache/commons/imaging/ImageInfo.java
@@ -82,7 +82,7 @@ public class ImageInfo {
 
     private static final Logger LOGGER = 
Logger.getLogger(ImageInfo.class.getName());
 
-    private final String formatDetails; // ie version
+    private final String formatDetails; // version
 
     private final int bitsPerPixel;
     private final List<String> comments;
diff --git 
a/src/main/java/org/apache/commons/imaging/formats/tiff/itu_t4/BitInputStreamFlexible.java
 
b/src/main/java/org/apache/commons/imaging/formats/tiff/itu_t4/BitInputStreamFlexible.java
index f6fe3971..39990d6a 100644
--- 
a/src/main/java/org/apache/commons/imaging/formats/tiff/itu_t4/BitInputStreamFlexible.java
+++ 
b/src/main/java/org/apache/commons/imaging/formats/tiff/itu_t4/BitInputStreamFlexible.java
@@ -28,8 +28,8 @@ import org.apache.commons.imaging.ImagingException;
  * bit first order.
  */
 class BitInputStreamFlexible extends FilterInputStream {
-    // TODO should be byte order conscious, ie TIFF for reading
-    // samples size<8 - shouldn't that effect their order within byte?
+    // TODO should be byte order conscious, that is, TIFF for reading
+    // samples size < 8 - shouldn't that effect their order within byte?
 
     private int cache;
     private int cacheBitsRemaining;

Reply via email to