summaryrefslogtreecommitdiffstats
path: root/java/test
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2021-09-15 13:26:25 (GMT)
committerGitHub <noreply@github.com>2021-09-15 13:26:25 (GMT)
commit1c892fb41fb5439d3b4a69fd3cd9d25e4aa2ee6e (patch)
tree13e69d68978d5d3e001e0438bd9b2d94838db944 /java/test
parentcd2ca91875be7d3ee98ab0131c32b9ee072509e5 (diff)
downloadhdf5-1c892fb41fb5439d3b4a69fd3cd9d25e4aa2ee6e.zip
hdf5-1c892fb41fb5439d3b4a69fd3cd9d25e4aa2ee6e.tar.gz
hdf5-1c892fb41fb5439d3b4a69fd3cd9d25e4aa2ee6e.tar.bz2
Fix java warnings (#1005)
Diffstat (limited to 'java/test')
-rw-r--r--java/test/TestH5Pfapl.java2
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) {}