Skip to content

Commit

Permalink
Correct java declares
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF committed Nov 14, 2023
1 parent adf6cfb commit 1e550ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions JAVA/intro/HDF5FileStructure.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
* </p>
*/
public class HDF5FileStructure {
private static String fname = "HDF5FileStructure.h5";
private static long[] dims2D = {20, 10};
private static long[] dims3D = {20, 10, 5};
private static String fname = "HDF5FileStructure.h5";
private long[] dims2D = {20, 10};
private long[] dims3D = {20, 10, 5};

private static void FileStructure()
{
Expand Down

0 comments on commit 1e550ac

Please sign in to comment.