diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-08-27 21:49:10 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-08-27 21:49:10 (GMT) |
commit | 09d13b3c13dfc3fa79a7d616d80a06183fb05cc9 (patch) | |
tree | 3e9a7eefca55dee039664b454f15a7aa87521142 /java | |
parent | 369d17c05c57689338a22988df90bfb8313da071 (diff) | |
download | hdf5-09d13b3c13dfc3fa79a7d616d80a06183fb05cc9.zip hdf5-09d13b3c13dfc3fa79a7d616d80a06183fb05cc9.tar.gz hdf5-09d13b3c13dfc3fa79a7d616d80a06183fb05cc9.tar.bz2 |
OESS-29 Fix HD prefix in perform and enable test compile
Diffstat (limited to 'java')
-rw-r--r-- | java/src/hdf/hdf5lib/structs/H5FD_hdfs_fapl_t.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/hdf/hdf5lib/structs/H5FD_hdfs_fapl_t.java b/java/src/hdf/hdf5lib/structs/H5FD_hdfs_fapl_t.java index f56a038..c13473c 100644 --- a/java/src/hdf/hdf5lib/structs/H5FD_hdfs_fapl_t.java +++ b/java/src/hdf/hdf5lib/structs/H5FD_hdfs_fapl_t.java @@ -17,7 +17,7 @@ package hdf.hdf5lib.structs; import java.io.Serializable; /* - * Java representation of the HDFS VFD file access property list (fapl) + * Java representation of the HDFS VFD file access property list (fapl) * structure. * * Used for the access of files hosted on the Hadoop Distributed File System. @@ -33,7 +33,7 @@ public class H5FD_hdfs_fapl_t implements Serializable { private int namenode_port; private int stream_buffer_size; - /** + /* * Create a fapl_t structure with the specified components. */ public H5FD_hdfs_fapl_t( @@ -91,7 +91,7 @@ public class H5FD_hdfs_fapl_t implements Serializable { public String toString() { return "H5FD_hdfs_fapl_t (Version: " + this.version + ") {" + "\n namenode_name: '" + this.namenode_name + - "'\n namenode_port: " + this.namenode_port + + "'\n namenode_port: " + this.namenode_port + "\n user_name: '" + this.user_name + "'\n kerberos_ticket_cache: '" + this.kerberos_ticket_cache + "'\n stream_buffer_size: " + this.stream_buffer_size + |