diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2021-09-16 13:48:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-16 13:48:12 (GMT) |
commit | 3d085ed2db89e2ec96d06c8965813fe49f8df2bc (patch) | |
tree | 8651f24273dcd26ef182d44d67774589ecd8de1b /java/test | |
parent | 4bf757e87bf1aa0d2e6fc5ee6128b795c535c27a (diff) | |
download | hdf5-3d085ed2db89e2ec96d06c8965813fe49f8df2bc.zip hdf5-3d085ed2db89e2ec96d06c8965813fe49f8df2bc.tar.gz hdf5-3d085ed2db89e2ec96d06c8965813fe49f8df2bc.tar.bz2 |
Fix javadoc and java warnings (#1011)
Diffstat (limited to 'java/test')
-rw-r--r-- | java/test/TestH5Pfapl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/test/TestH5Pfapl.java b/java/test/TestH5Pfapl.java index cc674e2..a65b52e 100644 --- a/java/test/TestH5Pfapl.java +++ b/java/test/TestH5Pfapl.java @@ -102,7 +102,7 @@ public class TestH5Pfapl { for(int indx = 0; ;indx++) { java.text.DecimalFormat myFormat = new java.text.DecimalFormat("00000"); try { - file = new File("test"+myFormat.format(new Integer(indx))+".h5"); + file = new File("test"+myFormat.format(Integer.valueOf(indx))+".h5"); } catch (Throwable err) {} |