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 08a53131ecb45f8ae70cb6cfa1ebdac4261f039c Author: Gary Gregory <[email protected]> AuthorDate: Tue Jul 4 10:03:15 2023 -0400 Use Java naming conventions --- .../imaging/formats/jpeg/exif/ExifRewriterRoundtripTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/java/org/apache/commons/imaging/formats/jpeg/exif/ExifRewriterRoundtripTest.java b/src/test/java/org/apache/commons/imaging/formats/jpeg/exif/ExifRewriterRoundtripTest.java index f6ce5229..866b48dc 100644 --- a/src/test/java/org/apache/commons/imaging/formats/jpeg/exif/ExifRewriterRoundtripTest.java +++ b/src/test/java/org/apache/commons/imaging/formats/jpeg/exif/ExifRewriterRoundtripTest.java @@ -87,9 +87,9 @@ public class ExifRewriterRoundtripTest extends ExifBaseTest { } private File createTempFile() { - final String temp_dir = System.getProperty("java.io.tmpdir"); - final String temp_filename = this.getClass().getName() + "-" + random.nextLong() + ".tmp"; - return new File(temp_dir, temp_filename); + final String tempDir = System.getProperty("java.io.tmpdir"); + final String tempFileName = this.getClass().getName() + "-" + random.nextLong() + ".tmp"; + return new File(tempDir, tempFileName); } private TiffOutputSet duplicateTiffOutputSet(final TiffOutputSet sourceTiffOutputSet) throws ImagingException {
