1 10 Fix java data export functions (#450)
* HDFFV-10865 - merge from dev, HDFArray perf fix. * Remove duplicate setting * Whitespace changes after clang format * Undo version 11 clang format changes * Merge CMake changes from develop * test testing script merge from develop * Update supported platforms * PR#3 merge from develop * Merge gcc 10 diagnostics option from develop * Merge #318 OSX changes from develop * Merge small changes from develop * Minor non-space formatting changes * #386 copyright corrections for java folder * Merges from develop #358 patches from vtk #361 fix header guard spelling * Merge updates #358 patches from vtk #361 fix header guard spelling * format fix * Fix missing underscore and make H5public.h closer to dev * Merges from develop #340 clang -Wformat-security warnings #360 Fixed uninitialized warnings header guard underscore cleanup JNI cleanup * format alignment * Add missing test ref file * Merge #380 from develop * Finish java merges from develop * Fix java issues with tests and javadoc * Correct use of attribute access plist * Remove debug code * Remove unused variable * Change file access to read only for java tests * Split clang format operations. * More javadoc comments * Remove pre-split setting * format source
This commit is contained in:
@@ -84,7 +84,7 @@ public class TestH5Plist {
|
||||
PROP3_NAME,
|
||||
PROP4_NAME};
|
||||
|
||||
long plist_class_id = -1;
|
||||
long plist_class_id = HDF5Constants.H5I_INVALID_HID;
|
||||
|
||||
@Before
|
||||
public void createPropClass()throws NullPointerException, HDF5Exception
|
||||
@@ -113,9 +113,9 @@ public class TestH5Plist {
|
||||
@Test
|
||||
public void testH5P_genprop_basic_class() {
|
||||
int status = -1;
|
||||
long cid1 = -1; // Generic Property class ID
|
||||
long cid2 = -1; // Generic Property class ID
|
||||
long cid3 = -1; // Generic Property class ID
|
||||
long cid1 = HDF5Constants.H5I_INVALID_HID; // Generic Property class ID
|
||||
long cid2 = HDF5Constants.H5I_INVALID_HID; // Generic Property class ID
|
||||
long cid3 = HDF5Constants.H5I_INVALID_HID; // Generic Property class ID
|
||||
String name = null; // Name of class
|
||||
|
||||
try {
|
||||
@@ -161,7 +161,7 @@ public class TestH5Plist {
|
||||
// Close parent class
|
||||
try {
|
||||
H5.H5Pclose_class(cid2);
|
||||
cid2 = -1;
|
||||
cid2 = HDF5Constants.H5I_INVALID_HID;
|
||||
}
|
||||
catch (Throwable err) {
|
||||
err.printStackTrace();
|
||||
@@ -171,7 +171,7 @@ public class TestH5Plist {
|
||||
// Close class
|
||||
try {
|
||||
H5.H5Pclose_class(plist_class_id);
|
||||
plist_class_id = -1;
|
||||
plist_class_id = HDF5Constants.H5I_INVALID_HID;
|
||||
}
|
||||
catch (Throwable err) {
|
||||
err.printStackTrace();
|
||||
@@ -241,7 +241,7 @@ public class TestH5Plist {
|
||||
// Close parent class's parent
|
||||
try {
|
||||
H5.H5Pclose_class(cid3);
|
||||
cid3 = -1;
|
||||
cid3 = HDF5Constants.H5I_INVALID_HID;
|
||||
}
|
||||
catch (Throwable err) {
|
||||
err.printStackTrace();
|
||||
@@ -251,7 +251,7 @@ public class TestH5Plist {
|
||||
// Close parent class's parent
|
||||
try {
|
||||
H5.H5Pclose_class(cid2);
|
||||
cid2 = -1;
|
||||
cid2 = HDF5Constants.H5I_INVALID_HID;
|
||||
}
|
||||
catch (Throwable err) {
|
||||
err.printStackTrace();
|
||||
@@ -261,7 +261,7 @@ public class TestH5Plist {
|
||||
// Close parent class's parent
|
||||
try {
|
||||
H5.H5Pclose_class(cid1);
|
||||
cid1 = -1;
|
||||
cid1 = HDF5Constants.H5I_INVALID_HID;
|
||||
}
|
||||
catch (Throwable err) {
|
||||
err.printStackTrace();
|
||||
@@ -633,7 +633,7 @@ public class TestH5Plist {
|
||||
@Test
|
||||
public void testH5P_genprop_basic_list_prop() {
|
||||
boolean status = false;
|
||||
long lid1 = -1; // Generic Property list ID
|
||||
long lid1 = HDF5Constants.H5I_INVALID_HID; // Generic Property list ID
|
||||
long nprops = -1; // Number of properties in class
|
||||
|
||||
try {
|
||||
@@ -759,7 +759,7 @@ public class TestH5Plist {
|
||||
// @Test
|
||||
// public void testH5P_genprop_class_callback() {
|
||||
// class cdata {
|
||||
// public long cls_id = -1;
|
||||
// public long cls_id = HDF5Constants.H5I_INVALID_HID;
|
||||
// public int cls_count = -1;
|
||||
// cdata(long id, int count) {
|
||||
// this.cls_id = id;
|
||||
@@ -812,11 +812,11 @@ public class TestH5Plist {
|
||||
// }
|
||||
// H5P_cls_close_func_cb cls_close_cb = new H5P_cls_close_callback();
|
||||
//
|
||||
// long cid1 = -1; // Generic Property class ID
|
||||
// long cid2 = -1; // Generic Property class ID
|
||||
// long lid1 = -1; // Generic Property list ID
|
||||
// long lid2 = -1; // Generic Property list ID
|
||||
// long lid3 = -1; // Generic Property list ID
|
||||
// long cid1 = HDF5Constants.H5I_INVALID_HID; // Generic Property class ID
|
||||
// long cid2 = HDF5Constants.H5I_INVALID_HID; // Generic Property class ID
|
||||
// long lid1 = HDF5Constants.H5I_INVALID_HID; // Generic Property list ID
|
||||
// long lid2 = HDF5Constants.H5I_INVALID_HID; // Generic Property list ID
|
||||
// long lid3 = HDF5Constants.H5I_INVALID_HID; // Generic Property list ID
|
||||
// long nprops = -1; // Number of properties in class
|
||||
//
|
||||
// try {
|
||||
|
||||
Reference in New Issue
Block a user