You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ki...@apache.org on 2019/05/11 11:40:08 UTC

[commons-imaging] branch master updated (9232551 -> 90b0f33)

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

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


    from 9232551  Remove unused import
     new cb54574  javadoc: Fix simple javadoc warnings
     new d0be32b  javadoc: Update test to use contains (exception message changed post JVM 11)
     new a8fe084  findbugs: Remove unnecessary else (previous if covers it)
     new 69db649  findbugs: Ignore exposing arrays in FindBugs, as the whole API was designed this way (may change later)
     new 265624a  findbugs: Ignore redundant null check due to a bug with JDK11 and spotbugs
     new eaafde7  findbugs: Ignore another bug, as the logic appears to be working fine
     new 725e9c3  findbugs: ignore issue with cloneable due to BC regression for now
     new 1ab42a2  javadoc: Fix location of findbugs exclusions file
     new ceadf4e  javadoc: Fix warning due to empty packages
     new b9f32b2  javadoc: Specify javadoc plugin source (see JDK-8212233)
     new dc84530  Update .travis.yml to support jdk12, ignore jdk7, and allow failures of openjdk-ea
     new 77fb42a  IMAGING-224: add changes.xml
     new 90b0f33  Merge pull request #41 from kinow/fix-travis-build

The 1089 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml                                        |  12 +-
 pom.xml                                            |   3 +-
 src/changes/changes.xml                            |   4 +-
 src/conf/findbugs-exclude-filter.xml               |  33 +++
 .../java/org/apache/commons/imaging/ImageInfo.java |  62 ++++--
 .../org/apache/commons/imaging/ImageParser.java    |   1 +
 .../java/org/apache/commons/imaging/Imaging.java   | 226 ++++++++++++-------
 .../apache/commons/imaging/ImagingConstants.java   |  86 ++++---
 .../commons/imaging/common/RationalNumber.java     |   3 +
 .../imaging/common/bytesource/ByteSource.java      |   3 +
 .../imaging/common/itu_t4/T4AndT6Compression.java  |  44 ++--
 .../imaging/formats/jpeg/JpegImageMetadata.java    |  12 +-
 .../imaging/formats/jpeg/exif/ExifRewriter.java    | 100 +++++----
 .../formats/jpeg/iptc/JpegIptcRewriter.java        |  60 +++++
 .../formats/jpeg/segments/GenericSegment.java      |   5 +-
 .../imaging/formats/jpeg/xmp/JpegXmpRewriter.java  |  20 ++
 .../commons/imaging/formats/package-info.java      |  23 --
 .../commons/imaging/formats/png/PngConstants.java  |  12 +-
 .../imaging/formats/png/PngImageParser.java        |   3 +
 .../imaging/formats/pnm/PnmImageParser.java        |   5 +-
 .../commons/imaging/formats/tga/TgaConstants.java  |  21 --
 .../imaging/formats/tga/TgaImageParser.java        | 246 ---------------------
 .../commons/imaging/formats/tga/package-info.java  |  22 --
 .../commons/imaging/formats/tiff/TiffField.java    |   2 +-
 .../imaging/formats/tiff/TiffImageParser.java      |  25 ++-
 .../imaging/formats/tiff/write/TiffOutputSet.java  |   2 +-
 .../apache/commons/imaging/palette/Dithering.java  |   2 +-
 .../apache/commons/imaging/palette/Palette.java    |   3 +-
 .../commons/imaging/palette/PaletteFactory.java    |   1 +
 .../psd/dataparsers/DataParserIndexedTest.java     |   3 +-
 30 files changed, 488 insertions(+), 556 deletions(-)
 delete mode 100644 src/main/java/org/apache/commons/imaging/formats/package-info.java
 delete mode 100644 src/main/java/org/apache/commons/imaging/formats/tga/TgaConstants.java
 delete mode 100644 src/main/java/org/apache/commons/imaging/formats/tga/TgaImageParser.java
 delete mode 100644 src/main/java/org/apache/commons/imaging/formats/tga/package-info.java