summaryrefslogtreecommitdiffstats
path: root/java/test
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2021-09-16 13:48:12 (GMT)
committerGitHub <noreply@github.com>2021-09-16 13:48:12 (GMT)
commit3d085ed2db89e2ec96d06c8965813fe49f8df2bc (patch)
tree8651f24273dcd26ef182d44d67774589ecd8de1b /java/test
parent4bf757e87bf1aa0d2e6fc5ee6128b795c535c27a (diff)
downloadhdf5-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.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) {}