Skip to content

Commit

Permalink
revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Jun 7, 2024
1 parent 33a988b commit 293af71
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ start-bundles: false
<target name="compile" depends="copy"
description="compile the source " >
<!-- Compile source -->
<javac srcdir="${temp}" target="11" destdir="${build}" debug="true" debuglevel="lines,vars,source">
<javac srcdir="${temp}" target="1.8" destdir="${build}" debug="true" debuglevel="lines,vars,source">
<classpath refid="classpath" />
</javac>

Expand Down
1 change: 1 addition & 0 deletions source/java/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<classpathentry kind="lib" path="libs/org.lucee.jmagick-6.2.4.jar"/>
<classpathentry kind="lib" path="libs/org.lucee.twelvemonkeys.imageio-ico-3.0.2.jar"/>
<classpathentry kind="lib" path="libs/org.apache.commons.commons-imaging-1.0.0.alpha3.jar"/>
<classpathentry kind="lib" path="libs/org.apache.commons.commons-io-2.11.0.jar"/>
<classpathentry kind="lib" path="libs/org.apiguardian.api-1.1.2.jar"/>
<classpathentry kind="lib" path="libs/org.hamcrest-2.2.jar"/>
<classpathentry kind="lib" path="libs/org.opentest4j-1.2.0.jar"/>
Expand Down
2 changes: 1 addition & 1 deletion source/java/src/org/lucee/extension/image/Metadata.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public static void addExifInfoToStruct(final Resource res, Struct info, Log log)
info.setEL("exif", exif);
try {
TiffImageMetadata _exif = jpegMetadata.getExif();
if (_exif != null) set(_exif.getItems(), info, exif);
set(_exif.getItems(), info, exif);
}
catch (Exception e) {
if (log != null) log.error("imaging", e);
Expand Down

0 comments on commit 293af71

Please sign in to comment.