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
commit cd021a0ecc5283267955d3b091be77eaa568c795 Author: Gary Gregory <[email protected]> AuthorDate: Tue Jul 4 09:48:57 2023 -0400 Fix names for log message --- .../java/org/apache/commons/imaging/formats/png/GammaCorrection.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/imaging/formats/png/GammaCorrection.java b/src/main/java/org/apache/commons/imaging/formats/png/GammaCorrection.java index adbfed81..ca3adba2 100644 --- a/src/main/java/org/apache/commons/imaging/formats/png/GammaCorrection.java +++ b/src/main/java/org/apache/commons/imaging/formats/png/GammaCorrection.java @@ -28,8 +28,8 @@ public class GammaCorrection { public GammaCorrection(final double srcGamma, final double dstGamma) { if (LOGGER.isLoggable(Level.FINEST)) { - LOGGER.finest("src_gamma: " + srcGamma); - LOGGER.finest("dst_gamma: " + dstGamma); + LOGGER.finest("srcGamma: " + srcGamma); + LOGGER.finest("dstGamma: " + dstGamma); } lookupTable = new int[256];
