diff --git a/CHANGES.md b/CHANGES.md index 96c9ffe7..9d066398 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # jHDF Change Log +## v0.7.0-alpha +- Add initial HDF5 writing support! https://github.com/jamesmudd/jhdf/issues/354. Special thanks to [@thadguidry](https://github.com/thadguidry) for sponsoring this work. See [WriteHdf5.java](jhdf/src/main/java/io/jhdf/examples/WriteHdf5.java) for example usage. +- Build and dependency updates + ## v0.6.10 - Add support for files containing superblock extensions https://github.com/jamesmudd/jhdf/issues/462 - Build and dependency updates diff --git a/README.md b/README.md index 733e183b..26c4f501 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # jHDF - Pure Java HDF5 library [![jHDF CI](https://github.com/jamesmudd/jhdf/actions/workflows/ci.yml/badge.svg)](https://github.com/jamesmudd/jhdf/actions/workflows/ci.yml) [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=jamesmudd_jhdf&metric=coverage)](https://sonarcloud.io/dashboard?id=jamesmudd_jhdf) [![Maven Central](https://img.shields.io/maven-central/v/io.jhdf/jhdf.svg?label=Maven%20Central)](https://search.maven.org/artifact/io.jhdf/jhdf) [![Javadocs](http://javadoc.io/badge/io.jhdf/jhdf.svg)](http://javadoc.io/doc/io.jhdf/jhdf) [![JetBrains Supported](https://img.shields.io/badge/supported-project.svg?label=&colorA=grey&colorB=orange&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxNHB4IiB2aWV3Qm94PSIwIDAgMTQgMTQiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE0IDE0IiB4bWw6c3BhY2U9InByZXNlcnZlIj48cmVjdCB4PSIxIiB5PSIxMiIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9IjciIGhlaWdodD0iMSIvPjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0wLjMsNy4zbDEtMS4xYzAuNCwwLjUsMC44LDAuNywxLjMsMC43YzAuNiwwLDEtMC40LDEtMS4yVjFoMS42djQuN2MwLDAuOS0wLjIsMS41LTAuNywxLjlDNC4xLDguMSwzLjQsOC40LDIuNiw4LjRDMS41LDguNCwwLjgsNy45LDAuMyw3LjN6Ii8%2BPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTYuOCwxaDMuNGMwLjgsMCwxLjUsMC4yLDEuOSwwLjZjMC4zLDAuMywwLjUsMC43LDAuNSwxLjJsMCwwYzAsMC44LTAuNCwxLjMtMSwxLjZDMTIuNSw0LjgsMTMsNS4zLDEzLDYuMmwwLDBjMCwxLjMtMS4xLDItMi43LDJINi44VjF6IE0xMSwzLjFjMC0wLjUtMC40LTAuNy0xLTAuN0g4LjR2MS41aDEuNUMxMC42LDMuOSwxMSwzLjcsMTEsMy4xTDExLDMuMXogTTEwLjIsNS4zSDguNHYxLjZoMS45YzAuNywwLDEuMS0wLjIsMS4xLTAuOGwwLDBDMTEuNCw1LjYsMTEuMSw1LjMsMTAuMiw1LjN6Ii8%2BPHJlY3QgeD0iMSIgeT0iMTIiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSI3IiBoZWlnaHQ9IjEiLz48L3N2Zz4%3D)](https://www.jetbrains.com/?from=jhdf) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.3996097.svg)](https://doi.org/10.5281/zenodo.3996097) -This project is a pure Java implementation for accessing HDF5 files. It is written from the file format specification and is not using any HDF Group code, it is *not* a wrapper around the C libraries. The file format specification is available from the HDF Group [here](https://portal.hdfgroup.org/display/HDF5/File+Format+Specification). More information on the format is available on [Wikipedia](https://en.wikipedia.org/wiki/Hierarchical_Data_Format). +This project is a pure Java implementation for accessing HDF5 files. It is written from the file format specification and is not using any HDF Group code, it is *not* a wrapper around the C libraries. The file format specification is available from the HDF Group [here](https://docs.hdfgroup.org/hdf5/v1_10/_f_m_t3.html). More information on the format is available on [Wikipedia](https://en.wikipedia.org/wiki/Hierarchical_Data_Format). The intention is to make a clean Java API to access HDF5 data. Currently, the project is targeting HDF5 read-only compatibility. For progress see the [change log](CHANGES.md). Java 8, 11 and 17 are officially supported. diff --git a/jhdf/build.gradle b/jhdf/build.gradle index 21bb5aa5..dd1ffb96 100644 --- a/jhdf/build.gradle +++ b/jhdf/build.gradle @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ @@ -27,7 +27,7 @@ plugins { // Variables group = 'io.jhdf' -version = '0.6.10' +version = '0.7.0-alpha' compileJava { sourceCompatibility = "1.8" @@ -158,6 +158,10 @@ publishing { developerConnection = 'scm:git:git://github.com/jamesmudd/jhdf.git' url = 'https://github.com/jamesmudd/jhdf.git' } + issueManagement { + system = 'github' + url = 'https://github.com/jamesmudd/jhdf/issues' + } } } } diff --git a/jhdf/config/checkstyle/header.txt b/jhdf/config/checkstyle/header.txt index 1d88963f..665a1db1 100644 --- a/jhdf/config/checkstyle/header.txt +++ b/jhdf/config/checkstyle/header.txt @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/gradle.properties b/jhdf/gradle.properties index 33e9a2a3..38d2e756 100644 --- a/jhdf/gradle.properties +++ b/jhdf/gradle.properties @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file #------------------------------------------------------------------------------- diff --git a/jhdf/settings.gradle b/jhdf/settings.gradle index f8c2efb7..27f83197 100644 --- a/jhdf/settings.gradle +++ b/jhdf/settings.gradle @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/jmh/java/io/jhdf/benchmarks/MemoryMapBenchmark.java b/jhdf/src/jmh/java/io/jhdf/benchmarks/MemoryMapBenchmark.java index d1ec0bb4..4d046d09 100644 --- a/jhdf/src/jmh/java/io/jhdf/benchmarks/MemoryMapBenchmark.java +++ b/jhdf/src/jmh/java/io/jhdf/benchmarks/MemoryMapBenchmark.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/AbstractNode.java b/jhdf/src/main/java/io/jhdf/AbstractNode.java index 9602c0da..814cc017 100644 --- a/jhdf/src/main/java/io/jhdf/AbstractNode.java +++ b/jhdf/src/main/java/io/jhdf/AbstractNode.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/AbstractWritableNode.java b/jhdf/src/main/java/io/jhdf/AbstractWritableNode.java index d41f34a0..23f786cb 100644 --- a/jhdf/src/main/java/io/jhdf/AbstractWritableNode.java +++ b/jhdf/src/main/java/io/jhdf/AbstractWritableNode.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/AttributeImpl.java b/jhdf/src/main/java/io/jhdf/AttributeImpl.java index b4bc3d56..e6da8082 100644 --- a/jhdf/src/main/java/io/jhdf/AttributeImpl.java +++ b/jhdf/src/main/java/io/jhdf/AttributeImpl.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/BufferBuilder.java b/jhdf/src/main/java/io/jhdf/BufferBuilder.java index 8829bae2..e6504dbf 100644 --- a/jhdf/src/main/java/io/jhdf/BufferBuilder.java +++ b/jhdf/src/main/java/io/jhdf/BufferBuilder.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/CommittedDatatype.java b/jhdf/src/main/java/io/jhdf/CommittedDatatype.java index d351a839..fc995800 100644 --- a/jhdf/src/main/java/io/jhdf/CommittedDatatype.java +++ b/jhdf/src/main/java/io/jhdf/CommittedDatatype.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/Constants.java b/jhdf/src/main/java/io/jhdf/Constants.java index 3e9ac1fe..2c86f822 100644 --- a/jhdf/src/main/java/io/jhdf/Constants.java +++ b/jhdf/src/main/java/io/jhdf/Constants.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/FractalHeap.java b/jhdf/src/main/java/io/jhdf/FractalHeap.java index 2af53b12..290bbba3 100644 --- a/jhdf/src/main/java/io/jhdf/FractalHeap.java +++ b/jhdf/src/main/java/io/jhdf/FractalHeap.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/GlobalHeap.java b/jhdf/src/main/java/io/jhdf/GlobalHeap.java index 8f6342f8..76f1d425 100644 --- a/jhdf/src/main/java/io/jhdf/GlobalHeap.java +++ b/jhdf/src/main/java/io/jhdf/GlobalHeap.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/GroupImpl.java b/jhdf/src/main/java/io/jhdf/GroupImpl.java index 3739475b..6cf783a2 100644 --- a/jhdf/src/main/java/io/jhdf/GroupImpl.java +++ b/jhdf/src/main/java/io/jhdf/GroupImpl.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/GroupSymbolTableNode.java b/jhdf/src/main/java/io/jhdf/GroupSymbolTableNode.java index 0d148af3..069b62c9 100644 --- a/jhdf/src/main/java/io/jhdf/GroupSymbolTableNode.java +++ b/jhdf/src/main/java/io/jhdf/GroupSymbolTableNode.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/HdfFile.java b/jhdf/src/main/java/io/jhdf/HdfFile.java index d75451da..3a6e65d1 100644 --- a/jhdf/src/main/java/io/jhdf/HdfFile.java +++ b/jhdf/src/main/java/io/jhdf/HdfFile.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/LocalHeap.java b/jhdf/src/main/java/io/jhdf/LocalHeap.java index 88f43107..0e195f99 100644 --- a/jhdf/src/main/java/io/jhdf/LocalHeap.java +++ b/jhdf/src/main/java/io/jhdf/LocalHeap.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/ObjectHeader.java b/jhdf/src/main/java/io/jhdf/ObjectHeader.java index ffa70e59..09da31a8 100644 --- a/jhdf/src/main/java/io/jhdf/ObjectHeader.java +++ b/jhdf/src/main/java/io/jhdf/ObjectHeader.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/Superblock.java b/jhdf/src/main/java/io/jhdf/Superblock.java index 0a073bbe..d9830e88 100644 --- a/jhdf/src/main/java/io/jhdf/Superblock.java +++ b/jhdf/src/main/java/io/jhdf/Superblock.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/SymbolTableEntry.java b/jhdf/src/main/java/io/jhdf/SymbolTableEntry.java index c4505c06..6be4e4b1 100644 --- a/jhdf/src/main/java/io/jhdf/SymbolTableEntry.java +++ b/jhdf/src/main/java/io/jhdf/SymbolTableEntry.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/Utils.java b/jhdf/src/main/java/io/jhdf/Utils.java index afeaef69..4016ae8c 100644 --- a/jhdf/src/main/java/io/jhdf/Utils.java +++ b/jhdf/src/main/java/io/jhdf/Utils.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/WritableDatasetImpl.java b/jhdf/src/main/java/io/jhdf/WritableDatasetImpl.java index 7588c540..1af88fab 100644 --- a/jhdf/src/main/java/io/jhdf/WritableDatasetImpl.java +++ b/jhdf/src/main/java/io/jhdf/WritableDatasetImpl.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/WritableGroupImpl.java b/jhdf/src/main/java/io/jhdf/WritableGroupImpl.java index 2d42ac98..a8919242 100644 --- a/jhdf/src/main/java/io/jhdf/WritableGroupImpl.java +++ b/jhdf/src/main/java/io/jhdf/WritableGroupImpl.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/WritableHdfFile.java b/jhdf/src/main/java/io/jhdf/WritableHdfFile.java index bdb06173..0f0fe838 100644 --- a/jhdf/src/main/java/io/jhdf/WritableHdfFile.java +++ b/jhdf/src/main/java/io/jhdf/WritableHdfFile.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ @@ -42,11 +42,10 @@ public class WritableHdfFile implements WritableGroup, AutoCloseable { private final FileChannel fileChannel; private final Superblock.SuperblockV2V3 superblock; private final HdfFileChannel hdfFileChannel; - private ObjectHeader.ObjectHeaderV2 rootGroupObjectHeader; - private final WritableGroup rootGroup; - public WritableHdfFile(Path path) { + WritableHdfFile(Path path) { + logger.warn("Writing files is in alpha. Check files carefully!"); logger.info("Writing HDF5 file to [{}]", path.toAbsolutePath()); this.path = path; try { @@ -58,24 +57,7 @@ public WritableHdfFile(Path path) { this.hdfFileChannel = new HdfFileChannel(this.fileChannel, this.superblock); this.rootGroup = new WritableGroupImpl(null, "/"); -// createRootGroup(); -// try { -// hdfFileChannel.write(superblock.toBuffer(), 0L); -// long endOfFile = rootGroup.write(hdfFileChannel, ROOT_GROUP_ADDRESS); -//// hdfFileChannel.write(rootGroup.(), ROOT_GROUP_ADDRESS); -// hdfFileChannel.write(ByteBuffer.wrap(new byte[]{1}), 250); -// } catch (IOException e) { -// throw new HdfWritingExcpetion("Failed to write superblock", e); -// } - } - -// private void createRootGroup() { -// List messages = new ArrayList<>(); -// messages.add(LinkInfoMessage.createBasic()); -// messages.add(GroupInfoMessage.createBasic()); -// messages.add(NilMessage.create()); -// this.rootGroupObjectHeader = new ObjectHeader.ObjectHeaderV2(ROOT_GROUP_ADDRESS, messages); -// } + } @Override public void close() { diff --git a/jhdf/src/main/java/io/jhdf/api/Attribute.java b/jhdf/src/main/java/io/jhdf/api/Attribute.java index ceeb768e..e3948567 100644 --- a/jhdf/src/main/java/io/jhdf/api/Attribute.java +++ b/jhdf/src/main/java/io/jhdf/api/Attribute.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ @@ -12,7 +12,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see LICENSE file */ diff --git a/jhdf/src/main/java/io/jhdf/api/Dataset.java b/jhdf/src/main/java/io/jhdf/api/Dataset.java index 0e964f43..cd300913 100644 --- a/jhdf/src/main/java/io/jhdf/api/Dataset.java +++ b/jhdf/src/main/java/io/jhdf/api/Dataset.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/api/Group.java b/jhdf/src/main/java/io/jhdf/api/Group.java index 2ca687cc..eafb3e71 100644 --- a/jhdf/src/main/java/io/jhdf/api/Group.java +++ b/jhdf/src/main/java/io/jhdf/api/Group.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/api/Link.java b/jhdf/src/main/java/io/jhdf/api/Link.java index d6c91c1f..1618780f 100644 --- a/jhdf/src/main/java/io/jhdf/api/Link.java +++ b/jhdf/src/main/java/io/jhdf/api/Link.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/api/Node.java b/jhdf/src/main/java/io/jhdf/api/Node.java index 192e6dc4..58264ff9 100644 --- a/jhdf/src/main/java/io/jhdf/api/Node.java +++ b/jhdf/src/main/java/io/jhdf/api/Node.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/api/NodeType.java b/jhdf/src/main/java/io/jhdf/api/NodeType.java index 34981768..a42f0573 100644 --- a/jhdf/src/main/java/io/jhdf/api/NodeType.java +++ b/jhdf/src/main/java/io/jhdf/api/NodeType.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/api/WritableGroup.java b/jhdf/src/main/java/io/jhdf/api/WritableGroup.java index e14ebf22..db05018d 100644 --- a/jhdf/src/main/java/io/jhdf/api/WritableGroup.java +++ b/jhdf/src/main/java/io/jhdf/api/WritableGroup.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/api/WritableNode.java b/jhdf/src/main/java/io/jhdf/api/WritableNode.java index 919e75bd..3d6e3eca 100644 --- a/jhdf/src/main/java/io/jhdf/api/WritableNode.java +++ b/jhdf/src/main/java/io/jhdf/api/WritableNode.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/api/WritiableDataset.java b/jhdf/src/main/java/io/jhdf/api/WritiableDataset.java index 307b57fc..b10ae9cc 100644 --- a/jhdf/src/main/java/io/jhdf/api/WritiableDataset.java +++ b/jhdf/src/main/java/io/jhdf/api/WritiableDataset.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/api/dataset/ChunkedDataset.java b/jhdf/src/main/java/io/jhdf/api/dataset/ChunkedDataset.java index 658e6bba..fc22fe5e 100644 --- a/jhdf/src/main/java/io/jhdf/api/dataset/ChunkedDataset.java +++ b/jhdf/src/main/java/io/jhdf/api/dataset/ChunkedDataset.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/api/dataset/ContiguousDataset.java b/jhdf/src/main/java/io/jhdf/api/dataset/ContiguousDataset.java index 056ff4cb..4c15dd19 100644 --- a/jhdf/src/main/java/io/jhdf/api/dataset/ContiguousDataset.java +++ b/jhdf/src/main/java/io/jhdf/api/dataset/ContiguousDataset.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/api/package-info.java b/jhdf/src/main/java/io/jhdf/api/package-info.java index d6ca1e02..faa370ea 100644 --- a/jhdf/src/main/java/io/jhdf/api/package-info.java +++ b/jhdf/src/main/java/io/jhdf/api/package-info.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/btree/BTreeV1.java b/jhdf/src/main/java/io/jhdf/btree/BTreeV1.java index b4753d26..b0ac2b96 100644 --- a/jhdf/src/main/java/io/jhdf/btree/BTreeV1.java +++ b/jhdf/src/main/java/io/jhdf/btree/BTreeV1.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/btree/BTreeV1Data.java b/jhdf/src/main/java/io/jhdf/btree/BTreeV1Data.java index fd683976..56b16a0d 100644 --- a/jhdf/src/main/java/io/jhdf/btree/BTreeV1Data.java +++ b/jhdf/src/main/java/io/jhdf/btree/BTreeV1Data.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/btree/BTreeV1Group.java b/jhdf/src/main/java/io/jhdf/btree/BTreeV1Group.java index 14b6402d..a3419171 100644 --- a/jhdf/src/main/java/io/jhdf/btree/BTreeV1Group.java +++ b/jhdf/src/main/java/io/jhdf/btree/BTreeV1Group.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/btree/BTreeV2.java b/jhdf/src/main/java/io/jhdf/btree/BTreeV2.java index 771ecc8d..1d05c1dc 100644 --- a/jhdf/src/main/java/io/jhdf/btree/BTreeV2.java +++ b/jhdf/src/main/java/io/jhdf/btree/BTreeV2.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/btree/package-info.java b/jhdf/src/main/java/io/jhdf/btree/package-info.java index 25b32e17..7190ced6 100644 --- a/jhdf/src/main/java/io/jhdf/btree/package-info.java +++ b/jhdf/src/main/java/io/jhdf/btree/package-info.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/btree/record/AttributeNameForIndexedAttributesRecord.java b/jhdf/src/main/java/io/jhdf/btree/record/AttributeNameForIndexedAttributesRecord.java index b3cd351a..96d29d09 100644 --- a/jhdf/src/main/java/io/jhdf/btree/record/AttributeNameForIndexedAttributesRecord.java +++ b/jhdf/src/main/java/io/jhdf/btree/record/AttributeNameForIndexedAttributesRecord.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/btree/record/BTreeDatasetChunkRecord.java b/jhdf/src/main/java/io/jhdf/btree/record/BTreeDatasetChunkRecord.java index b352ba28..62595ca9 100644 --- a/jhdf/src/main/java/io/jhdf/btree/record/BTreeDatasetChunkRecord.java +++ b/jhdf/src/main/java/io/jhdf/btree/record/BTreeDatasetChunkRecord.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/btree/record/BTreeRecord.java b/jhdf/src/main/java/io/jhdf/btree/record/BTreeRecord.java index 15d1387d..7983167a 100644 --- a/jhdf/src/main/java/io/jhdf/btree/record/BTreeRecord.java +++ b/jhdf/src/main/java/io/jhdf/btree/record/BTreeRecord.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/btree/record/FilteredDatasetChunks.java b/jhdf/src/main/java/io/jhdf/btree/record/FilteredDatasetChunks.java index e2a3c816..31331c6b 100644 --- a/jhdf/src/main/java/io/jhdf/btree/record/FilteredDatasetChunks.java +++ b/jhdf/src/main/java/io/jhdf/btree/record/FilteredDatasetChunks.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/btree/record/HugeFractalHeapObjectUnfilteredRecord.java b/jhdf/src/main/java/io/jhdf/btree/record/HugeFractalHeapObjectUnfilteredRecord.java index 40997cb0..1400f650 100644 --- a/jhdf/src/main/java/io/jhdf/btree/record/HugeFractalHeapObjectUnfilteredRecord.java +++ b/jhdf/src/main/java/io/jhdf/btree/record/HugeFractalHeapObjectUnfilteredRecord.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/btree/record/LinkNameForIndexedGroupRecord.java b/jhdf/src/main/java/io/jhdf/btree/record/LinkNameForIndexedGroupRecord.java index 6c6aa9c2..12c31d39 100644 --- a/jhdf/src/main/java/io/jhdf/btree/record/LinkNameForIndexedGroupRecord.java +++ b/jhdf/src/main/java/io/jhdf/btree/record/LinkNameForIndexedGroupRecord.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/btree/record/NonFilteredDatasetChunks.java b/jhdf/src/main/java/io/jhdf/btree/record/NonFilteredDatasetChunks.java index c882e696..6e4c70ed 100644 --- a/jhdf/src/main/java/io/jhdf/btree/record/NonFilteredDatasetChunks.java +++ b/jhdf/src/main/java/io/jhdf/btree/record/NonFilteredDatasetChunks.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/btree/record/package-info.java b/jhdf/src/main/java/io/jhdf/btree/record/package-info.java index e0b33c58..b7f10c8e 100644 --- a/jhdf/src/main/java/io/jhdf/btree/record/package-info.java +++ b/jhdf/src/main/java/io/jhdf/btree/record/package-info.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/checksum/ChecksumUtils.java b/jhdf/src/main/java/io/jhdf/checksum/ChecksumUtils.java index 3cb61844..c7a174c6 100644 --- a/jhdf/src/main/java/io/jhdf/checksum/ChecksumUtils.java +++ b/jhdf/src/main/java/io/jhdf/checksum/ChecksumUtils.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/checksum/JenkinsLookup3HashLittle.java b/jhdf/src/main/java/io/jhdf/checksum/JenkinsLookup3HashLittle.java index fc3ccf16..c33938f3 100644 --- a/jhdf/src/main/java/io/jhdf/checksum/JenkinsLookup3HashLittle.java +++ b/jhdf/src/main/java/io/jhdf/checksum/JenkinsLookup3HashLittle.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/CompactDataset.java b/jhdf/src/main/java/io/jhdf/dataset/CompactDataset.java index eb2ba3c1..dbd0c258 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/CompactDataset.java +++ b/jhdf/src/main/java/io/jhdf/dataset/CompactDataset.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/CompoundDatasetReader.java b/jhdf/src/main/java/io/jhdf/dataset/CompoundDatasetReader.java index 93169d90..fc16f390 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/CompoundDatasetReader.java +++ b/jhdf/src/main/java/io/jhdf/dataset/CompoundDatasetReader.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/ContiguousDatasetImpl.java b/jhdf/src/main/java/io/jhdf/dataset/ContiguousDatasetImpl.java index 8a96dab8..7ddba364 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/ContiguousDatasetImpl.java +++ b/jhdf/src/main/java/io/jhdf/dataset/ContiguousDatasetImpl.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/DatasetBase.java b/jhdf/src/main/java/io/jhdf/dataset/DatasetBase.java index 5a4c1c78..fa27c89b 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/DatasetBase.java +++ b/jhdf/src/main/java/io/jhdf/dataset/DatasetBase.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/DatasetLoader.java b/jhdf/src/main/java/io/jhdf/dataset/DatasetLoader.java index cefe2fb2..4df62b1f 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/DatasetLoader.java +++ b/jhdf/src/main/java/io/jhdf/dataset/DatasetLoader.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/DatasetReader.java b/jhdf/src/main/java/io/jhdf/dataset/DatasetReader.java index 4a02b272..fc07613a 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/DatasetReader.java +++ b/jhdf/src/main/java/io/jhdf/dataset/DatasetReader.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/EnumDatasetReader.java b/jhdf/src/main/java/io/jhdf/dataset/EnumDatasetReader.java index b3dfbe9e..4b4ef827 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/EnumDatasetReader.java +++ b/jhdf/src/main/java/io/jhdf/dataset/EnumDatasetReader.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/GlobalHeapId.java b/jhdf/src/main/java/io/jhdf/dataset/GlobalHeapId.java index e1508f6b..de947938 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/GlobalHeapId.java +++ b/jhdf/src/main/java/io/jhdf/dataset/GlobalHeapId.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/NoParent.java b/jhdf/src/main/java/io/jhdf/dataset/NoParent.java index e75cd08c..0aae6ec9 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/NoParent.java +++ b/jhdf/src/main/java/io/jhdf/dataset/NoParent.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/VariableLengthDatasetReader.java b/jhdf/src/main/java/io/jhdf/dataset/VariableLengthDatasetReader.java index af53a4a3..c027ddf3 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/VariableLengthDatasetReader.java +++ b/jhdf/src/main/java/io/jhdf/dataset/VariableLengthDatasetReader.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/chunked/Chunk.java b/jhdf/src/main/java/io/jhdf/dataset/chunked/Chunk.java index 9bf1b006..3055a321 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/chunked/Chunk.java +++ b/jhdf/src/main/java/io/jhdf/dataset/chunked/Chunk.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkOffset.java b/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkOffset.java index cd914975..316205cd 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkOffset.java +++ b/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkOffset.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkedDatasetBase.java b/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkedDatasetBase.java index 4b9e26c7..b0b04db7 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkedDatasetBase.java +++ b/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkedDatasetBase.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkedDatasetV3.java b/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkedDatasetV3.java index 417d12bb..64a461e6 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkedDatasetV3.java +++ b/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkedDatasetV3.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkedDatasetV4.java b/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkedDatasetV4.java index 3e9bdc07..f9caf258 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkedDatasetV4.java +++ b/jhdf/src/main/java/io/jhdf/dataset/chunked/ChunkedDatasetV4.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/chunked/DatasetInfo.java b/jhdf/src/main/java/io/jhdf/dataset/chunked/DatasetInfo.java index 89a50573..bdf8f5d8 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/chunked/DatasetInfo.java +++ b/jhdf/src/main/java/io/jhdf/dataset/chunked/DatasetInfo.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/BTreeIndex.java b/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/BTreeIndex.java index 7426798b..14cdeb60 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/BTreeIndex.java +++ b/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/BTreeIndex.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/ChunkImpl.java b/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/ChunkImpl.java index ecf5861d..8f0bcf8e 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/ChunkImpl.java +++ b/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/ChunkImpl.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/ChunkIndex.java b/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/ChunkIndex.java index 64d80d59..ae45f827 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/ChunkIndex.java +++ b/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/ChunkIndex.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/EmptyChunkIndex.java b/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/EmptyChunkIndex.java index 58f724ad..43ed139d 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/EmptyChunkIndex.java +++ b/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/EmptyChunkIndex.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/ExtensibleArrayIndex.java b/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/ExtensibleArrayIndex.java index 2e9cabcb..11d1fc8e 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/ExtensibleArrayIndex.java +++ b/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/ExtensibleArrayIndex.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/FixedArrayIndex.java b/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/FixedArrayIndex.java index c81d9420..9564667c 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/FixedArrayIndex.java +++ b/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/FixedArrayIndex.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/SingleChunkIndex.java b/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/SingleChunkIndex.java index 5b6f175a..53947b7d 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/SingleChunkIndex.java +++ b/jhdf/src/main/java/io/jhdf/dataset/chunked/indexing/SingleChunkIndex.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/chunked/package-info.java b/jhdf/src/main/java/io/jhdf/dataset/chunked/package-info.java index 277c7572..6ca095ae 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/chunked/package-info.java +++ b/jhdf/src/main/java/io/jhdf/dataset/chunked/package-info.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/dataset/package-info.java b/jhdf/src/main/java/io/jhdf/dataset/package-info.java index a6975f83..854ee1e5 100644 --- a/jhdf/src/main/java/io/jhdf/dataset/package-info.java +++ b/jhdf/src/main/java/io/jhdf/dataset/package-info.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/examples/PrintTree.java b/jhdf/src/main/java/io/jhdf/examples/PrintTree.java index 7de402f2..427273bd 100644 --- a/jhdf/src/main/java/io/jhdf/examples/PrintTree.java +++ b/jhdf/src/main/java/io/jhdf/examples/PrintTree.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/examples/RawChunkAccess.java b/jhdf/src/main/java/io/jhdf/examples/RawChunkAccess.java index fc7cb49c..c33fd263 100644 --- a/jhdf/src/main/java/io/jhdf/examples/RawChunkAccess.java +++ b/jhdf/src/main/java/io/jhdf/examples/RawChunkAccess.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/examples/ReadAttribute.java b/jhdf/src/main/java/io/jhdf/examples/ReadAttribute.java index 4479737e..ea8a5f6b 100644 --- a/jhdf/src/main/java/io/jhdf/examples/ReadAttribute.java +++ b/jhdf/src/main/java/io/jhdf/examples/ReadAttribute.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/examples/ReadDataset.java b/jhdf/src/main/java/io/jhdf/examples/ReadDataset.java index ae99fb7f..185a6f91 100644 --- a/jhdf/src/main/java/io/jhdf/examples/ReadDataset.java +++ b/jhdf/src/main/java/io/jhdf/examples/ReadDataset.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/examples/ReadFilters.java b/jhdf/src/main/java/io/jhdf/examples/ReadFilters.java index 184ba00d..02d34ca3 100644 --- a/jhdf/src/main/java/io/jhdf/examples/ReadFilters.java +++ b/jhdf/src/main/java/io/jhdf/examples/ReadFilters.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/examples/WriteHdf5.java b/jhdf/src/main/java/io/jhdf/examples/WriteHdf5.java new file mode 100644 index 00000000..b5aa0bdc --- /dev/null +++ b/jhdf/src/main/java/io/jhdf/examples/WriteHdf5.java @@ -0,0 +1,46 @@ +/* + * This file is part of jHDF. A pure Java library for accessing HDF5 files. + * + * http://jhdf.io + * + * Copyright (c) 2024 James Mudd + * + * MIT License see 'LICENSE' file + */ +package io.jhdf.examples; + +import io.jhdf.HdfFile; +import io.jhdf.WritableHdfFile; +import io.jhdf.api.WritableGroup; + +import java.nio.file.Paths; + +/** + * Example application for writing a simple HDF5 file + * + * @author James Mudd + */ +public class WriteHdf5 { + public static void main(String[] args) { + try (WritableHdfFile hdfFile = HdfFile.write(Paths.get("jhdf.hdf5"))) { + hdfFile.putDataset("ints", new int[] {1, 2, 3, 4}); + hdfFile.putDataset("doubles", new double[] {1.0, 2.0, 3.0, 4.0}); + + WritableGroup multiDimGroup = hdfFile.putGroup("multiDim"); + multiDimGroup.putDataset("2d-ints", new int[][]{ + {1, 2}, + {3, 4} + }); + multiDimGroup.putDataset("3d-ints", new int[][][]{ + { + {1, 2}, + {3, 4} + }, + { + {5, 6}, + {7, 8} + }, + }); + } + } +} diff --git a/jhdf/src/main/java/io/jhdf/examples/package-info.java b/jhdf/src/main/java/io/jhdf/examples/package-info.java index 81807e4d..a10cda98 100644 --- a/jhdf/src/main/java/io/jhdf/examples/package-info.java +++ b/jhdf/src/main/java/io/jhdf/examples/package-info.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/exceptions/HdfBrokenLinkException.java b/jhdf/src/main/java/io/jhdf/exceptions/HdfBrokenLinkException.java index b9e148c2..bb79401a 100644 --- a/jhdf/src/main/java/io/jhdf/exceptions/HdfBrokenLinkException.java +++ b/jhdf/src/main/java/io/jhdf/exceptions/HdfBrokenLinkException.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/exceptions/HdfChecksumMismatchException.java b/jhdf/src/main/java/io/jhdf/exceptions/HdfChecksumMismatchException.java index abbfab85..1be19516 100644 --- a/jhdf/src/main/java/io/jhdf/exceptions/HdfChecksumMismatchException.java +++ b/jhdf/src/main/java/io/jhdf/exceptions/HdfChecksumMismatchException.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/exceptions/HdfException.java b/jhdf/src/main/java/io/jhdf/exceptions/HdfException.java index 062481f9..43ae743f 100644 --- a/jhdf/src/main/java/io/jhdf/exceptions/HdfException.java +++ b/jhdf/src/main/java/io/jhdf/exceptions/HdfException.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/exceptions/HdfFilterException.java b/jhdf/src/main/java/io/jhdf/exceptions/HdfFilterException.java index 1c7b6098..9415d3cc 100644 --- a/jhdf/src/main/java/io/jhdf/exceptions/HdfFilterException.java +++ b/jhdf/src/main/java/io/jhdf/exceptions/HdfFilterException.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/exceptions/HdfInvalidPathException.java b/jhdf/src/main/java/io/jhdf/exceptions/HdfInvalidPathException.java index 7030fd50..df885e00 100644 --- a/jhdf/src/main/java/io/jhdf/exceptions/HdfInvalidPathException.java +++ b/jhdf/src/main/java/io/jhdf/exceptions/HdfInvalidPathException.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/exceptions/HdfTypeException.java b/jhdf/src/main/java/io/jhdf/exceptions/HdfTypeException.java index fc1f8cc8..c40c69be 100644 --- a/jhdf/src/main/java/io/jhdf/exceptions/HdfTypeException.java +++ b/jhdf/src/main/java/io/jhdf/exceptions/HdfTypeException.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/exceptions/HdfWritingException.java b/jhdf/src/main/java/io/jhdf/exceptions/HdfWritingException.java index d1709b96..5bed75e0 100644 --- a/jhdf/src/main/java/io/jhdf/exceptions/HdfWritingException.java +++ b/jhdf/src/main/java/io/jhdf/exceptions/HdfWritingException.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/exceptions/InMemoryHdfException.java b/jhdf/src/main/java/io/jhdf/exceptions/InMemoryHdfException.java index 9d479f04..e750214d 100644 --- a/jhdf/src/main/java/io/jhdf/exceptions/InMemoryHdfException.java +++ b/jhdf/src/main/java/io/jhdf/exceptions/InMemoryHdfException.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/exceptions/InvalidSliceHdfException.java b/jhdf/src/main/java/io/jhdf/exceptions/InvalidSliceHdfException.java index b793ec52..4f324468 100644 --- a/jhdf/src/main/java/io/jhdf/exceptions/InvalidSliceHdfException.java +++ b/jhdf/src/main/java/io/jhdf/exceptions/InvalidSliceHdfException.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/exceptions/UnsupportedHdfException.java b/jhdf/src/main/java/io/jhdf/exceptions/UnsupportedHdfException.java index 0d136172..ee87f2c0 100644 --- a/jhdf/src/main/java/io/jhdf/exceptions/UnsupportedHdfException.java +++ b/jhdf/src/main/java/io/jhdf/exceptions/UnsupportedHdfException.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/exceptions/package-info.java b/jhdf/src/main/java/io/jhdf/exceptions/package-info.java index a74fe922..1f498ff7 100644 --- a/jhdf/src/main/java/io/jhdf/exceptions/package-info.java +++ b/jhdf/src/main/java/io/jhdf/exceptions/package-info.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/filter/BitShuffleFilter.java b/jhdf/src/main/java/io/jhdf/filter/BitShuffleFilter.java index 90511401..9afcc4dc 100644 --- a/jhdf/src/main/java/io/jhdf/filter/BitShuffleFilter.java +++ b/jhdf/src/main/java/io/jhdf/filter/BitShuffleFilter.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/filter/ByteShuffleFilter.java b/jhdf/src/main/java/io/jhdf/filter/ByteShuffleFilter.java index de202633..08a32348 100644 --- a/jhdf/src/main/java/io/jhdf/filter/ByteShuffleFilter.java +++ b/jhdf/src/main/java/io/jhdf/filter/ByteShuffleFilter.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/filter/DeflatePipelineFilter.java b/jhdf/src/main/java/io/jhdf/filter/DeflatePipelineFilter.java index 65c7a280..52e2497c 100644 --- a/jhdf/src/main/java/io/jhdf/filter/DeflatePipelineFilter.java +++ b/jhdf/src/main/java/io/jhdf/filter/DeflatePipelineFilter.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/filter/Filter.java b/jhdf/src/main/java/io/jhdf/filter/Filter.java index c2dfa1e2..92ae3685 100644 --- a/jhdf/src/main/java/io/jhdf/filter/Filter.java +++ b/jhdf/src/main/java/io/jhdf/filter/Filter.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/filter/FilterManager.java b/jhdf/src/main/java/io/jhdf/filter/FilterManager.java index c4fd0410..3fb08d25 100644 --- a/jhdf/src/main/java/io/jhdf/filter/FilterManager.java +++ b/jhdf/src/main/java/io/jhdf/filter/FilterManager.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/filter/FilterPipeline.java b/jhdf/src/main/java/io/jhdf/filter/FilterPipeline.java index 33c9aba0..68777e60 100644 --- a/jhdf/src/main/java/io/jhdf/filter/FilterPipeline.java +++ b/jhdf/src/main/java/io/jhdf/filter/FilterPipeline.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/filter/FletcherChecksumFilter.java b/jhdf/src/main/java/io/jhdf/filter/FletcherChecksumFilter.java index 70a51c48..1be8c502 100644 --- a/jhdf/src/main/java/io/jhdf/filter/FletcherChecksumFilter.java +++ b/jhdf/src/main/java/io/jhdf/filter/FletcherChecksumFilter.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/filter/Lz4Filter.java b/jhdf/src/main/java/io/jhdf/filter/Lz4Filter.java index e0b25d77..7dabaa52 100644 --- a/jhdf/src/main/java/io/jhdf/filter/Lz4Filter.java +++ b/jhdf/src/main/java/io/jhdf/filter/Lz4Filter.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/filter/LzfFilter.java b/jhdf/src/main/java/io/jhdf/filter/LzfFilter.java index 4402956d..ebc67b8f 100644 --- a/jhdf/src/main/java/io/jhdf/filter/LzfFilter.java +++ b/jhdf/src/main/java/io/jhdf/filter/LzfFilter.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/filter/PipelineFilterWithData.java b/jhdf/src/main/java/io/jhdf/filter/PipelineFilterWithData.java index aeab8c0e..781198f4 100644 --- a/jhdf/src/main/java/io/jhdf/filter/PipelineFilterWithData.java +++ b/jhdf/src/main/java/io/jhdf/filter/PipelineFilterWithData.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/filter/package-info.java b/jhdf/src/main/java/io/jhdf/filter/package-info.java index 2c601c65..d6c8acdc 100644 --- a/jhdf/src/main/java/io/jhdf/filter/package-info.java +++ b/jhdf/src/main/java/io/jhdf/filter/package-info.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/links/AbstractLink.java b/jhdf/src/main/java/io/jhdf/links/AbstractLink.java index 551f4348..f75913d1 100644 --- a/jhdf/src/main/java/io/jhdf/links/AbstractLink.java +++ b/jhdf/src/main/java/io/jhdf/links/AbstractLink.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/links/ExternalLink.java b/jhdf/src/main/java/io/jhdf/links/ExternalLink.java index 47da0446..9ad0fc98 100644 --- a/jhdf/src/main/java/io/jhdf/links/ExternalLink.java +++ b/jhdf/src/main/java/io/jhdf/links/ExternalLink.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/links/SoftLink.java b/jhdf/src/main/java/io/jhdf/links/SoftLink.java index 23d44df8..56e5c5b1 100644 --- a/jhdf/src/main/java/io/jhdf/links/SoftLink.java +++ b/jhdf/src/main/java/io/jhdf/links/SoftLink.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/links/package-info.java b/jhdf/src/main/java/io/jhdf/links/package-info.java index 4e97d1c6..5f613881 100644 --- a/jhdf/src/main/java/io/jhdf/links/package-info.java +++ b/jhdf/src/main/java/io/jhdf/links/package-info.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/datatype/ArrayDataType.java b/jhdf/src/main/java/io/jhdf/object/datatype/ArrayDataType.java index 7a94121f..c04cbdd7 100644 --- a/jhdf/src/main/java/io/jhdf/object/datatype/ArrayDataType.java +++ b/jhdf/src/main/java/io/jhdf/object/datatype/ArrayDataType.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/datatype/BitField.java b/jhdf/src/main/java/io/jhdf/object/datatype/BitField.java index 5961718c..853c24e7 100644 --- a/jhdf/src/main/java/io/jhdf/object/datatype/BitField.java +++ b/jhdf/src/main/java/io/jhdf/object/datatype/BitField.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/datatype/CompoundDataType.java b/jhdf/src/main/java/io/jhdf/object/datatype/CompoundDataType.java index 4b104446..00e9ecab 100644 --- a/jhdf/src/main/java/io/jhdf/object/datatype/CompoundDataType.java +++ b/jhdf/src/main/java/io/jhdf/object/datatype/CompoundDataType.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/datatype/DataType.java b/jhdf/src/main/java/io/jhdf/object/datatype/DataType.java index cb33ed7a..40f3a2f0 100644 --- a/jhdf/src/main/java/io/jhdf/object/datatype/DataType.java +++ b/jhdf/src/main/java/io/jhdf/object/datatype/DataType.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/datatype/EnumDataType.java b/jhdf/src/main/java/io/jhdf/object/datatype/EnumDataType.java index 700cfd3e..a764f4f6 100644 --- a/jhdf/src/main/java/io/jhdf/object/datatype/EnumDataType.java +++ b/jhdf/src/main/java/io/jhdf/object/datatype/EnumDataType.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/datatype/FixedPoint.java b/jhdf/src/main/java/io/jhdf/object/datatype/FixedPoint.java index 3ea4329a..e63e9c88 100644 --- a/jhdf/src/main/java/io/jhdf/object/datatype/FixedPoint.java +++ b/jhdf/src/main/java/io/jhdf/object/datatype/FixedPoint.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/datatype/FloatingPoint.java b/jhdf/src/main/java/io/jhdf/object/datatype/FloatingPoint.java index 6784edd3..ce577c65 100644 --- a/jhdf/src/main/java/io/jhdf/object/datatype/FloatingPoint.java +++ b/jhdf/src/main/java/io/jhdf/object/datatype/FloatingPoint.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/datatype/OpaqueDataType.java b/jhdf/src/main/java/io/jhdf/object/datatype/OpaqueDataType.java index 5b513de0..b6e903d3 100644 --- a/jhdf/src/main/java/io/jhdf/object/datatype/OpaqueDataType.java +++ b/jhdf/src/main/java/io/jhdf/object/datatype/OpaqueDataType.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/datatype/OrderedDataType.java b/jhdf/src/main/java/io/jhdf/object/datatype/OrderedDataType.java index d824e432..f7e284dd 100644 --- a/jhdf/src/main/java/io/jhdf/object/datatype/OrderedDataType.java +++ b/jhdf/src/main/java/io/jhdf/object/datatype/OrderedDataType.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/datatype/Reference.java b/jhdf/src/main/java/io/jhdf/object/datatype/Reference.java index ddcc2e46..9e1433b9 100644 --- a/jhdf/src/main/java/io/jhdf/object/datatype/Reference.java +++ b/jhdf/src/main/java/io/jhdf/object/datatype/Reference.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/datatype/StringData.java b/jhdf/src/main/java/io/jhdf/object/datatype/StringData.java index 77a4f910..d2241ca6 100644 --- a/jhdf/src/main/java/io/jhdf/object/datatype/StringData.java +++ b/jhdf/src/main/java/io/jhdf/object/datatype/StringData.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/datatype/VariableLength.java b/jhdf/src/main/java/io/jhdf/object/datatype/VariableLength.java index 56cf7c4e..9a37b3d4 100644 --- a/jhdf/src/main/java/io/jhdf/object/datatype/VariableLength.java +++ b/jhdf/src/main/java/io/jhdf/object/datatype/VariableLength.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/datatype/WritableDataType.java b/jhdf/src/main/java/io/jhdf/object/datatype/WritableDataType.java index a1ee4ca9..fa3f1ac1 100644 --- a/jhdf/src/main/java/io/jhdf/object/datatype/WritableDataType.java +++ b/jhdf/src/main/java/io/jhdf/object/datatype/WritableDataType.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/datatype/package-info.java b/jhdf/src/main/java/io/jhdf/object/datatype/package-info.java index afffb9dd..fd1fee46 100644 --- a/jhdf/src/main/java/io/jhdf/object/datatype/package-info.java +++ b/jhdf/src/main/java/io/jhdf/object/datatype/package-info.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/AttributeInfoMessage.java b/jhdf/src/main/java/io/jhdf/object/message/AttributeInfoMessage.java index 1d0c31b3..ca5268ed 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/AttributeInfoMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/AttributeInfoMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/AttributeMessage.java b/jhdf/src/main/java/io/jhdf/object/message/AttributeMessage.java index 925e45e2..94d421ea 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/AttributeMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/AttributeMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/BTreeKValuesMessage.java b/jhdf/src/main/java/io/jhdf/object/message/BTreeKValuesMessage.java index 351d3e7e..5d30a593 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/BTreeKValuesMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/BTreeKValuesMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/DataLayout.java b/jhdf/src/main/java/io/jhdf/object/message/DataLayout.java index 29d7d678..510c471b 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/DataLayout.java +++ b/jhdf/src/main/java/io/jhdf/object/message/DataLayout.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/DataLayoutMessage.java b/jhdf/src/main/java/io/jhdf/object/message/DataLayoutMessage.java index 2c8ab81d..cc598e16 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/DataLayoutMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/DataLayoutMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/DataSpace.java b/jhdf/src/main/java/io/jhdf/object/message/DataSpace.java index a63a0947..58c1fa97 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/DataSpace.java +++ b/jhdf/src/main/java/io/jhdf/object/message/DataSpace.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/DataSpaceMessage.java b/jhdf/src/main/java/io/jhdf/object/message/DataSpaceMessage.java index 7a655244..1d68bbe4 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/DataSpaceMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/DataSpaceMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/DataTypeMessage.java b/jhdf/src/main/java/io/jhdf/object/message/DataTypeMessage.java index 42d17e0d..b4de02f4 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/DataTypeMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/DataTypeMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/FillValueMessage.java b/jhdf/src/main/java/io/jhdf/object/message/FillValueMessage.java index 0e6a30cb..e8af47be 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/FillValueMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/FillValueMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/FillValueOldMessage.java b/jhdf/src/main/java/io/jhdf/object/message/FillValueOldMessage.java index d8c95d96..2a209ef2 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/FillValueOldMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/FillValueOldMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/FilterPipelineMessage.java b/jhdf/src/main/java/io/jhdf/object/message/FilterPipelineMessage.java index e5d40bc1..039433f7 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/FilterPipelineMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/FilterPipelineMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/GroupInfoMessage.java b/jhdf/src/main/java/io/jhdf/object/message/GroupInfoMessage.java index 6c648548..e0f3217c 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/GroupInfoMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/GroupInfoMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/LinkInfoMessage.java b/jhdf/src/main/java/io/jhdf/object/message/LinkInfoMessage.java index 2e02a354..4fc10d58 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/LinkInfoMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/LinkInfoMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/LinkMessage.java b/jhdf/src/main/java/io/jhdf/object/message/LinkMessage.java index 6c32ee34..0c6c1cbb 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/LinkMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/LinkMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/Message.java b/jhdf/src/main/java/io/jhdf/object/message/Message.java index f0bf7469..65ff2c72 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/Message.java +++ b/jhdf/src/main/java/io/jhdf/object/message/Message.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/NilMessage.java b/jhdf/src/main/java/io/jhdf/object/message/NilMessage.java index 63f7d428..274ddb25 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/NilMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/NilMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/ObjectCommentMessage.java b/jhdf/src/main/java/io/jhdf/object/message/ObjectCommentMessage.java index 1f85d243..89b87044 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/ObjectCommentMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/ObjectCommentMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/ObjectHeaderContinuationMessage.java b/jhdf/src/main/java/io/jhdf/object/message/ObjectHeaderContinuationMessage.java index 1c0c1aac..4dbe93ca 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/ObjectHeaderContinuationMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/ObjectHeaderContinuationMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/ObjectModificationTimeMessage.java b/jhdf/src/main/java/io/jhdf/object/message/ObjectModificationTimeMessage.java index b146a607..36805586 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/ObjectModificationTimeMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/ObjectModificationTimeMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/ObjectReferenceCountMessage.java b/jhdf/src/main/java/io/jhdf/object/message/ObjectReferenceCountMessage.java index 25f1165f..4c22ca68 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/ObjectReferenceCountMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/ObjectReferenceCountMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/OldObjectModificationTimeMessage.java b/jhdf/src/main/java/io/jhdf/object/message/OldObjectModificationTimeMessage.java index d909931c..d6b9f6d4 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/OldObjectModificationTimeMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/OldObjectModificationTimeMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/SharedMessage.java b/jhdf/src/main/java/io/jhdf/object/message/SharedMessage.java index 169eb4a9..57177413 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/SharedMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/SharedMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/SymbolTableMessage.java b/jhdf/src/main/java/io/jhdf/object/message/SymbolTableMessage.java index e4cf717b..2b4ea2f9 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/SymbolTableMessage.java +++ b/jhdf/src/main/java/io/jhdf/object/message/SymbolTableMessage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/object/message/package-info.java b/jhdf/src/main/java/io/jhdf/object/message/package-info.java index 8f482112..42dc25d5 100644 --- a/jhdf/src/main/java/io/jhdf/object/message/package-info.java +++ b/jhdf/src/main/java/io/jhdf/object/message/package-info.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/storage/HdfBackingStorage.java b/jhdf/src/main/java/io/jhdf/storage/HdfBackingStorage.java index e9f36595..0b566ff0 100644 --- a/jhdf/src/main/java/io/jhdf/storage/HdfBackingStorage.java +++ b/jhdf/src/main/java/io/jhdf/storage/HdfBackingStorage.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/storage/HdfFileChannel.java b/jhdf/src/main/java/io/jhdf/storage/HdfFileChannel.java index bf590cb1..c9ed2120 100644 --- a/jhdf/src/main/java/io/jhdf/storage/HdfFileChannel.java +++ b/jhdf/src/main/java/io/jhdf/storage/HdfFileChannel.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/java/io/jhdf/storage/HdfInMemoryByteBuffer.java b/jhdf/src/main/java/io/jhdf/storage/HdfInMemoryByteBuffer.java index cfc2eaef..0cd279ca 100644 --- a/jhdf/src/main/java/io/jhdf/storage/HdfInMemoryByteBuffer.java +++ b/jhdf/src/main/java/io/jhdf/storage/HdfInMemoryByteBuffer.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/main/resources/simplelogger.properties b/jhdf/src/main/resources/simplelogger.properties index 32bfcb0b..cc2c94f3 100644 --- a/jhdf/src/main/resources/simplelogger.properties +++ b/jhdf/src/main/resources/simplelogger.properties @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file #------------------------------------------------------------------------------- diff --git a/jhdf/src/test/java/io/jhdf/AttributesTest.java b/jhdf/src/test/java/io/jhdf/AttributesTest.java index 20d43623..00d46856 100644 --- a/jhdf/src/test/java/io/jhdf/AttributesTest.java +++ b/jhdf/src/test/java/io/jhdf/AttributesTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/BufferBuilderTest.java b/jhdf/src/test/java/io/jhdf/BufferBuilderTest.java index 3511d283..67653461 100644 --- a/jhdf/src/test/java/io/jhdf/BufferBuilderTest.java +++ b/jhdf/src/test/java/io/jhdf/BufferBuilderTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/CommittedDatatypeTest.java b/jhdf/src/test/java/io/jhdf/CommittedDatatypeTest.java index 4dfb328b..9b066d6f 100644 --- a/jhdf/src/test/java/io/jhdf/CommittedDatatypeTest.java +++ b/jhdf/src/test/java/io/jhdf/CommittedDatatypeTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/DatasetImplTest.java b/jhdf/src/test/java/io/jhdf/DatasetImplTest.java index b2066626..3d814b55 100644 --- a/jhdf/src/test/java/io/jhdf/DatasetImplTest.java +++ b/jhdf/src/test/java/io/jhdf/DatasetImplTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/FractalHeapTest.java b/jhdf/src/test/java/io/jhdf/FractalHeapTest.java index c2ad7022..96729c14 100644 --- a/jhdf/src/test/java/io/jhdf/FractalHeapTest.java +++ b/jhdf/src/test/java/io/jhdf/FractalHeapTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/GlobalHeapTest.java b/jhdf/src/test/java/io/jhdf/GlobalHeapTest.java index e2717a2e..7f2e6295 100644 --- a/jhdf/src/test/java/io/jhdf/GlobalHeapTest.java +++ b/jhdf/src/test/java/io/jhdf/GlobalHeapTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/GroupSymbolTableNodeTest.java b/jhdf/src/test/java/io/jhdf/GroupSymbolTableNodeTest.java index 9927e301..ca01c4c4 100644 --- a/jhdf/src/test/java/io/jhdf/GroupSymbolTableNodeTest.java +++ b/jhdf/src/test/java/io/jhdf/GroupSymbolTableNodeTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/GroupTest.java b/jhdf/src/test/java/io/jhdf/GroupTest.java index 974bd169..95b9e774 100644 --- a/jhdf/src/test/java/io/jhdf/GroupTest.java +++ b/jhdf/src/test/java/io/jhdf/GroupTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/HdfFileChannelTest.java b/jhdf/src/test/java/io/jhdf/HdfFileChannelTest.java index bb8f1ff2..2fab00a3 100644 --- a/jhdf/src/test/java/io/jhdf/HdfFileChannelTest.java +++ b/jhdf/src/test/java/io/jhdf/HdfFileChannelTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/HdfFileTest.java b/jhdf/src/test/java/io/jhdf/HdfFileTest.java index b299ab9c..29fabc74 100644 --- a/jhdf/src/test/java/io/jhdf/HdfFileTest.java +++ b/jhdf/src/test/java/io/jhdf/HdfFileTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/JenkinsLookup3HashLittleTest.java b/jhdf/src/test/java/io/jhdf/JenkinsLookup3HashLittleTest.java index 1c07fdb8..8cc2a87d 100644 --- a/jhdf/src/test/java/io/jhdf/JenkinsLookup3HashLittleTest.java +++ b/jhdf/src/test/java/io/jhdf/JenkinsLookup3HashLittleTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/LargeAttributesTest.java b/jhdf/src/test/java/io/jhdf/LargeAttributesTest.java index 067d638d..0cebd2a4 100644 --- a/jhdf/src/test/java/io/jhdf/LargeAttributesTest.java +++ b/jhdf/src/test/java/io/jhdf/LargeAttributesTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/LargeGroupTest.java b/jhdf/src/test/java/io/jhdf/LargeGroupTest.java index 3edef0d1..bcb9b2a8 100644 --- a/jhdf/src/test/java/io/jhdf/LargeGroupTest.java +++ b/jhdf/src/test/java/io/jhdf/LargeGroupTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/LocalHeapTest.java b/jhdf/src/test/java/io/jhdf/LocalHeapTest.java index 278efe91..060543ee 100644 --- a/jhdf/src/test/java/io/jhdf/LocalHeapTest.java +++ b/jhdf/src/test/java/io/jhdf/LocalHeapTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/NoInstancesTest.java b/jhdf/src/test/java/io/jhdf/NoInstancesTest.java index 2c4c0fc6..82dd6385 100644 --- a/jhdf/src/test/java/io/jhdf/NoInstancesTest.java +++ b/jhdf/src/test/java/io/jhdf/NoInstancesTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/ObjectHeaderTest.java b/jhdf/src/test/java/io/jhdf/ObjectHeaderTest.java index 039aa7a4..b24af7ba 100644 --- a/jhdf/src/test/java/io/jhdf/ObjectHeaderTest.java +++ b/jhdf/src/test/java/io/jhdf/ObjectHeaderTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/ObjectHeaderV2Test.java b/jhdf/src/test/java/io/jhdf/ObjectHeaderV2Test.java index 040485d6..defb0e82 100644 --- a/jhdf/src/test/java/io/jhdf/ObjectHeaderV2Test.java +++ b/jhdf/src/test/java/io/jhdf/ObjectHeaderV2Test.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/OrderedGroupTest.java b/jhdf/src/test/java/io/jhdf/OrderedGroupTest.java index 16211dc2..dffa0fc6 100644 --- a/jhdf/src/test/java/io/jhdf/OrderedGroupTest.java +++ b/jhdf/src/test/java/io/jhdf/OrderedGroupTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/SimpleWritingTest.java b/jhdf/src/test/java/io/jhdf/SimpleWritingTest.java index d5451cc5..52912182 100644 --- a/jhdf/src/test/java/io/jhdf/SimpleWritingTest.java +++ b/jhdf/src/test/java/io/jhdf/SimpleWritingTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/SuperblockTest.java b/jhdf/src/test/java/io/jhdf/SuperblockTest.java index bf5877cf..8b733aa9 100644 --- a/jhdf/src/test/java/io/jhdf/SuperblockTest.java +++ b/jhdf/src/test/java/io/jhdf/SuperblockTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/SuperblockV3Test.java b/jhdf/src/test/java/io/jhdf/SuperblockV3Test.java index 7a680abd..b8bcc9bd 100644 --- a/jhdf/src/test/java/io/jhdf/SuperblockV3Test.java +++ b/jhdf/src/test/java/io/jhdf/SuperblockV3Test.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/SymbolTableEntryTest.java b/jhdf/src/test/java/io/jhdf/SymbolTableEntryTest.java index 03c34014..a1b5e37a 100644 --- a/jhdf/src/test/java/io/jhdf/SymbolTableEntryTest.java +++ b/jhdf/src/test/java/io/jhdf/SymbolTableEntryTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/TestUtils.java b/jhdf/src/test/java/io/jhdf/TestUtils.java index 607bf4d9..acb691b5 100644 --- a/jhdf/src/test/java/io/jhdf/TestUtils.java +++ b/jhdf/src/test/java/io/jhdf/TestUtils.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/UserBlockTest.java b/jhdf/src/test/java/io/jhdf/UserBlockTest.java index 17117aff..40113a75 100644 --- a/jhdf/src/test/java/io/jhdf/UserBlockTest.java +++ b/jhdf/src/test/java/io/jhdf/UserBlockTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/UtilsTest.java b/jhdf/src/test/java/io/jhdf/UtilsTest.java index add90a78..2d511a2a 100644 --- a/jhdf/src/test/java/io/jhdf/UtilsTest.java +++ b/jhdf/src/test/java/io/jhdf/UtilsTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/WritableApiTest.java b/jhdf/src/test/java/io/jhdf/WritableApiTest.java index f34ef413..4adc6a90 100644 --- a/jhdf/src/test/java/io/jhdf/WritableApiTest.java +++ b/jhdf/src/test/java/io/jhdf/WritableApiTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/WritableGroupImplTest.java b/jhdf/src/test/java/io/jhdf/WritableGroupImplTest.java index dcd5cd2b..859eb744 100644 --- a/jhdf/src/test/java/io/jhdf/WritableGroupImplTest.java +++ b/jhdf/src/test/java/io/jhdf/WritableGroupImplTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/attribute/CompoundScalarAttributeTest.java b/jhdf/src/test/java/io/jhdf/attribute/CompoundScalarAttributeTest.java index ab1559e1..c2e8ecab 100644 --- a/jhdf/src/test/java/io/jhdf/attribute/CompoundScalarAttributeTest.java +++ b/jhdf/src/test/java/io/jhdf/attribute/CompoundScalarAttributeTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/btree/BTreeV1Test.java b/jhdf/src/test/java/io/jhdf/btree/BTreeV1Test.java index baced46d..4d153516 100644 --- a/jhdf/src/test/java/io/jhdf/btree/BTreeV1Test.java +++ b/jhdf/src/test/java/io/jhdf/btree/BTreeV1Test.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/btree/record/BTreeRecordTest.java b/jhdf/src/test/java/io/jhdf/btree/record/BTreeRecordTest.java index 1d097530..d1b62138 100644 --- a/jhdf/src/test/java/io/jhdf/btree/record/BTreeRecordTest.java +++ b/jhdf/src/test/java/io/jhdf/btree/record/BTreeRecordTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/btree/record/LinkNameForIndexedGroupRecordTest.java b/jhdf/src/test/java/io/jhdf/btree/record/LinkNameForIndexedGroupRecordTest.java index ef9c4c04..80d9b6c2 100644 --- a/jhdf/src/test/java/io/jhdf/btree/record/LinkNameForIndexedGroupRecordTest.java +++ b/jhdf/src/test/java/io/jhdf/btree/record/LinkNameForIndexedGroupRecordTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/checksum/ChecksumUtilsTest.java b/jhdf/src/test/java/io/jhdf/checksum/ChecksumUtilsTest.java index e8568448..f3af94eb 100644 --- a/jhdf/src/test/java/io/jhdf/checksum/ChecksumUtilsTest.java +++ b/jhdf/src/test/java/io/jhdf/checksum/ChecksumUtilsTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/BitfieldDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/BitfieldDatasetTest.java index 09810694..76f5e6f2 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/BitfieldDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/BitfieldDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/BitshuffleDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/BitshuffleDatasetTest.java index 21985a58..dc296ea5 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/BitshuffleDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/BitshuffleDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/ByteShuffleChunkedDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/ByteShuffleChunkedDatasetTest.java index a1f789d8..58a11fa5 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/ByteShuffleChunkedDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/ByteShuffleChunkedDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/ChunkedDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/ChunkedDatasetTest.java index 324be027..41ed829f 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/ChunkedDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/ChunkedDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/ChunkedV4DatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/ChunkedV4DatasetTest.java index cefc3ce9..fe8a05d2 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/ChunkedV4DatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/ChunkedV4DatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/CompactDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/CompactDatasetTest.java index fe5975f8..ac830266 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/CompactDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/CompactDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/CompoundDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/CompoundDatasetTest.java index 7fbea8fd..5a1a1e2b 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/CompoundDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/CompoundDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/CompressedChunkedDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/CompressedChunkedDatasetTest.java index 21352f99..8a25f0f3 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/CompressedChunkedDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/CompressedChunkedDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/DatasetByAddressTest.java b/jhdf/src/test/java/io/jhdf/dataset/DatasetByAddressTest.java index a244dc18..9b3211d3 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/DatasetByAddressTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/DatasetByAddressTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/DatasetLoaderTest.java b/jhdf/src/test/java/io/jhdf/dataset/DatasetLoaderTest.java index 7d930ff8..64d0d028 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/DatasetLoaderTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/DatasetLoaderTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/EmptyDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/EmptyDatasetTest.java index 35601565..32c997fc 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/EmptyDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/EmptyDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/EnumDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/EnumDatasetTest.java index b20558d6..c4b7e026 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/EnumDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/EnumDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/FillValueDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/FillValueDatasetTest.java index 0b9b1f62..1038e121 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/FillValueDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/FillValueDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/FloatSpecialValuesTest.java b/jhdf/src/test/java/io/jhdf/dataset/FloatSpecialValuesTest.java index d4b329b1..f52ad02f 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/FloatSpecialValuesTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/FloatSpecialValuesTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/Lz4DatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/Lz4DatasetTest.java index 9809cae2..20db66bd 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/Lz4DatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/Lz4DatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/MultidimensionalArrayDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/MultidimensionalArrayDatasetTest.java index ce0863c5..2d0dcaf0 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/MultidimensionalArrayDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/MultidimensionalArrayDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/OddDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/OddDatasetTest.java index 6e131c9f..b03e7732 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/OddDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/OddDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/OpaqueDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/OpaqueDatasetTest.java index 52b35c55..85ab714f 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/OpaqueDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/OpaqueDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/ScalarDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/ScalarDatasetTest.java index b5ce9f69..2f720db5 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/ScalarDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/ScalarDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/SlicingTest.java b/jhdf/src/test/java/io/jhdf/dataset/SlicingTest.java index e604cb67..e042b296 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/SlicingTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/SlicingTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/StringDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/StringDatasetTest.java index d38f8b3c..5336a72b 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/StringDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/StringDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/VariableLengthDatasetTest.java b/jhdf/src/test/java/io/jhdf/dataset/VariableLengthDatasetTest.java index d63c3b6a..c3b3d836 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/VariableLengthDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/VariableLengthDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/chunked/ChunkOffsetTest.java b/jhdf/src/test/java/io/jhdf/dataset/chunked/ChunkOffsetTest.java index 4a5c9d8b..00fbf313 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/chunked/ChunkOffsetTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/chunked/ChunkOffsetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/chunked/indexing/ExtensibleArrayCounterTest.java b/jhdf/src/test/java/io/jhdf/dataset/chunked/indexing/ExtensibleArrayCounterTest.java index d4d4a4cb..f2311bbf 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/chunked/indexing/ExtensibleArrayCounterTest.java +++ b/jhdf/src/test/java/io/jhdf/dataset/chunked/indexing/ExtensibleArrayCounterTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/dataset/chunked/indexing/ExtensibleArraySecondaryBlockPointerCounter.java b/jhdf/src/test/java/io/jhdf/dataset/chunked/indexing/ExtensibleArraySecondaryBlockPointerCounter.java index 09966c95..cd40ab5a 100644 --- a/jhdf/src/test/java/io/jhdf/dataset/chunked/indexing/ExtensibleArraySecondaryBlockPointerCounter.java +++ b/jhdf/src/test/java/io/jhdf/dataset/chunked/indexing/ExtensibleArraySecondaryBlockPointerCounter.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/examples/PrintTreeTest.java b/jhdf/src/test/java/io/jhdf/examples/PrintTreeTest.java index cc4d9d3c..be3f90f5 100644 --- a/jhdf/src/test/java/io/jhdf/examples/PrintTreeTest.java +++ b/jhdf/src/test/java/io/jhdf/examples/PrintTreeTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/examples/RawChunkAccessTest.java b/jhdf/src/test/java/io/jhdf/examples/RawChunkAccessTest.java index 5ffa7177..1d1bcdf1 100644 --- a/jhdf/src/test/java/io/jhdf/examples/RawChunkAccessTest.java +++ b/jhdf/src/test/java/io/jhdf/examples/RawChunkAccessTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/examples/ReadAttributeTest.java b/jhdf/src/test/java/io/jhdf/examples/ReadAttributeTest.java index 05682ec0..a684805d 100644 --- a/jhdf/src/test/java/io/jhdf/examples/ReadAttributeTest.java +++ b/jhdf/src/test/java/io/jhdf/examples/ReadAttributeTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/examples/ReadDatasetTest.java b/jhdf/src/test/java/io/jhdf/examples/ReadDatasetTest.java index 545ecafd..f13bfa2b 100644 --- a/jhdf/src/test/java/io/jhdf/examples/ReadDatasetTest.java +++ b/jhdf/src/test/java/io/jhdf/examples/ReadDatasetTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/examples/ReadFiltersTest.java b/jhdf/src/test/java/io/jhdf/examples/ReadFiltersTest.java index 215423dd..963f217c 100644 --- a/jhdf/src/test/java/io/jhdf/examples/ReadFiltersTest.java +++ b/jhdf/src/test/java/io/jhdf/examples/ReadFiltersTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/examples/TestAllFiles.java b/jhdf/src/test/java/io/jhdf/examples/TestAllFiles.java index f57a9606..6e86eca6 100644 --- a/jhdf/src/test/java/io/jhdf/examples/TestAllFiles.java +++ b/jhdf/src/test/java/io/jhdf/examples/TestAllFiles.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/examples/TestAllFilesBase.java b/jhdf/src/test/java/io/jhdf/examples/TestAllFilesBase.java index d6e55328..e6198925 100644 --- a/jhdf/src/test/java/io/jhdf/examples/TestAllFilesBase.java +++ b/jhdf/src/test/java/io/jhdf/examples/TestAllFilesBase.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/examples/TestAllFilesInMemory.java b/jhdf/src/test/java/io/jhdf/examples/TestAllFilesInMemory.java index fe4befd7..c1c52663 100644 --- a/jhdf/src/test/java/io/jhdf/examples/TestAllFilesInMemory.java +++ b/jhdf/src/test/java/io/jhdf/examples/TestAllFilesInMemory.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/exceptions/ExceptionsTest.java b/jhdf/src/test/java/io/jhdf/exceptions/ExceptionsTest.java index 59c18d0e..b3e6df8f 100644 --- a/jhdf/src/test/java/io/jhdf/exceptions/ExceptionsTest.java +++ b/jhdf/src/test/java/io/jhdf/exceptions/ExceptionsTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/filter/BitShuffleFilterTest.java b/jhdf/src/test/java/io/jhdf/filter/BitShuffleFilterTest.java index f809a51f..61af2f16 100644 --- a/jhdf/src/test/java/io/jhdf/filter/BitShuffleFilterTest.java +++ b/jhdf/src/test/java/io/jhdf/filter/BitShuffleFilterTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/filter/ByteShuffleFilterTest.java b/jhdf/src/test/java/io/jhdf/filter/ByteShuffleFilterTest.java index f1b56572..b3f1deae 100644 --- a/jhdf/src/test/java/io/jhdf/filter/ByteShuffleFilterTest.java +++ b/jhdf/src/test/java/io/jhdf/filter/ByteShuffleFilterTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/filter/DeflatePipelineFilterTest.java b/jhdf/src/test/java/io/jhdf/filter/DeflatePipelineFilterTest.java index e2faeba3..37c579d4 100644 --- a/jhdf/src/test/java/io/jhdf/filter/DeflatePipelineFilterTest.java +++ b/jhdf/src/test/java/io/jhdf/filter/DeflatePipelineFilterTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/filter/Lz4FilterTest.java b/jhdf/src/test/java/io/jhdf/filter/Lz4FilterTest.java index b8df4637..4a20124e 100644 --- a/jhdf/src/test/java/io/jhdf/filter/Lz4FilterTest.java +++ b/jhdf/src/test/java/io/jhdf/filter/Lz4FilterTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/filter/MissingFilterTest.java b/jhdf/src/test/java/io/jhdf/filter/MissingFilterTest.java index e9e62d5d..d42d3c60 100644 --- a/jhdf/src/test/java/io/jhdf/filter/MissingFilterTest.java +++ b/jhdf/src/test/java/io/jhdf/filter/MissingFilterTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/links/LinksTest.java b/jhdf/src/test/java/io/jhdf/links/LinksTest.java index 4758ba3c..fe0fd090 100644 --- a/jhdf/src/test/java/io/jhdf/links/LinksTest.java +++ b/jhdf/src/test/java/io/jhdf/links/LinksTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/nio/NioPathTest.java b/jhdf/src/test/java/io/jhdf/nio/NioPathTest.java index 5af2d89b..ddf97041 100644 --- a/jhdf/src/test/java/io/jhdf/nio/NioPathTest.java +++ b/jhdf/src/test/java/io/jhdf/nio/NioPathTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/object/datatype/FixedPointTest.java b/jhdf/src/test/java/io/jhdf/object/datatype/FixedPointTest.java index 1ff8e096..c37f48d5 100644 --- a/jhdf/src/test/java/io/jhdf/object/datatype/FixedPointTest.java +++ b/jhdf/src/test/java/io/jhdf/object/datatype/FixedPointTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/object/datatype/FloatingPointTest.java b/jhdf/src/test/java/io/jhdf/object/datatype/FloatingPointTest.java index 2f6518a5..b8f286dc 100644 --- a/jhdf/src/test/java/io/jhdf/object/datatype/FloatingPointTest.java +++ b/jhdf/src/test/java/io/jhdf/object/datatype/FloatingPointTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/object/datatype/ReferenceTest.java b/jhdf/src/test/java/io/jhdf/object/datatype/ReferenceTest.java index 9a81ae67..c5f6d00b 100644 --- a/jhdf/src/test/java/io/jhdf/object/datatype/ReferenceTest.java +++ b/jhdf/src/test/java/io/jhdf/object/datatype/ReferenceTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/object/datatype/StringDataTest.java b/jhdf/src/test/java/io/jhdf/object/datatype/StringDataTest.java index 74fa8287..77adbae4 100644 --- a/jhdf/src/test/java/io/jhdf/object/datatype/StringDataTest.java +++ b/jhdf/src/test/java/io/jhdf/object/datatype/StringDataTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/object/message/AttributeMessageV1Test.java b/jhdf/src/test/java/io/jhdf/object/message/AttributeMessageV1Test.java index 0ea2aeed..3113da6d 100644 --- a/jhdf/src/test/java/io/jhdf/object/message/AttributeMessageV1Test.java +++ b/jhdf/src/test/java/io/jhdf/object/message/AttributeMessageV1Test.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/object/message/AttributeMessageV3Test.java b/jhdf/src/test/java/io/jhdf/object/message/AttributeMessageV3Test.java index 959fa134..c71e615e 100644 --- a/jhdf/src/test/java/io/jhdf/object/message/AttributeMessageV3Test.java +++ b/jhdf/src/test/java/io/jhdf/object/message/AttributeMessageV3Test.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/object/message/FillValueOldMessageTest.java b/jhdf/src/test/java/io/jhdf/object/message/FillValueOldMessageTest.java index 10fa8fcf..d2c1fbca 100644 --- a/jhdf/src/test/java/io/jhdf/object/message/FillValueOldMessageTest.java +++ b/jhdf/src/test/java/io/jhdf/object/message/FillValueOldMessageTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/object/message/GroupInfoMessageTest.java b/jhdf/src/test/java/io/jhdf/object/message/GroupInfoMessageTest.java index b3a4f94f..4a873910 100644 --- a/jhdf/src/test/java/io/jhdf/object/message/GroupInfoMessageTest.java +++ b/jhdf/src/test/java/io/jhdf/object/message/GroupInfoMessageTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/object/message/LinkInfoMessageTest.java b/jhdf/src/test/java/io/jhdf/object/message/LinkInfoMessageTest.java index 2764cfa2..79dfe22f 100644 --- a/jhdf/src/test/java/io/jhdf/object/message/LinkInfoMessageTest.java +++ b/jhdf/src/test/java/io/jhdf/object/message/LinkInfoMessageTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/object/message/LinkMessageTest.java b/jhdf/src/test/java/io/jhdf/object/message/LinkMessageTest.java index 868804ef..8a3697eb 100644 --- a/jhdf/src/test/java/io/jhdf/object/message/LinkMessageTest.java +++ b/jhdf/src/test/java/io/jhdf/object/message/LinkMessageTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/object/message/ObjectCommentMessageTest.java b/jhdf/src/test/java/io/jhdf/object/message/ObjectCommentMessageTest.java index c03b0f09..91ecb5b6 100644 --- a/jhdf/src/test/java/io/jhdf/object/message/ObjectCommentMessageTest.java +++ b/jhdf/src/test/java/io/jhdf/object/message/ObjectCommentMessageTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/java/io/jhdf/object/message/ObjectModificationTimeMessageTest.java b/jhdf/src/test/java/io/jhdf/object/message/ObjectModificationTimeMessageTest.java index c29900bd..db7c673c 100644 --- a/jhdf/src/test/java/io/jhdf/object/message/ObjectModificationTimeMessageTest.java +++ b/jhdf/src/test/java/io/jhdf/object/message/ObjectModificationTimeMessageTest.java @@ -3,7 +3,7 @@ * * http://jhdf.io * - * Copyright (c) 2023 James Mudd + * Copyright (c) 2024 James Mudd * * MIT License see 'LICENSE' file */ diff --git a/jhdf/src/test/resources/scripts/attributes.py b/jhdf/src/test/resources/scripts/attributes.py index 3c62fa03..bec0900b 100644 --- a/jhdf/src/test/resources/scripts/attributes.py +++ b/jhdf/src/test/resources/scripts/attributes.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/bitfield_datasets.py b/jhdf/src/test/resources/scripts/bitfield_datasets.py index 1a0f9eef..6282c6bb 100644 --- a/jhdf/src/test/resources/scripts/bitfield_datasets.py +++ b/jhdf/src/test/resources/scripts/bitfield_datasets.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/byteshuffle_compressed_datasets.py b/jhdf/src/test/resources/scripts/byteshuffle_compressed_datasets.py index 0c6d1953..f0d797c4 100644 --- a/jhdf/src/test/resources/scripts/byteshuffle_compressed_datasets.py +++ b/jhdf/src/test/resources/scripts/byteshuffle_compressed_datasets.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/chunked_datasets.py b/jhdf/src/test/resources/scripts/chunked_datasets.py index 37dca113..70b175ba 100644 --- a/jhdf/src/test/resources/scripts/chunked_datasets.py +++ b/jhdf/src/test/resources/scripts/chunked_datasets.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/chunked_v4_datasets.py b/jhdf/src/test/resources/scripts/chunked_v4_datasets.py index 443bdd8a..4521e29a 100644 --- a/jhdf/src/test/resources/scripts/chunked_v4_datasets.py +++ b/jhdf/src/test/resources/scripts/chunked_v4_datasets.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/compact_datasets.py b/jhdf/src/test/resources/scripts/compact_datasets.py index 533624a5..7138abce 100644 --- a/jhdf/src/test/resources/scripts/compact_datasets.py +++ b/jhdf/src/test/resources/scripts/compact_datasets.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/compound_datasets.py b/jhdf/src/test/resources/scripts/compound_datasets.py index f4d0d1a1..009449b6 100644 --- a/jhdf/src/test/resources/scripts/compound_datasets.py +++ b/jhdf/src/test/resources/scripts/compound_datasets.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/compressed_chunked_datasets.py b/jhdf/src/test/resources/scripts/compressed_chunked_datasets.py index 2067a036..e325b0f1 100644 --- a/jhdf/src/test/resources/scripts/compressed_chunked_datasets.py +++ b/jhdf/src/test/resources/scripts/compressed_chunked_datasets.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/enum_datasets.py b/jhdf/src/test/resources/scripts/enum_datasets.py index e08be6fa..afe35089 100644 --- a/jhdf/src/test/resources/scripts/enum_datasets.py +++ b/jhdf/src/test/resources/scripts/enum_datasets.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/fill_values.py b/jhdf/src/test/resources/scripts/fill_values.py index 7cf5cdff..87d601cd 100644 --- a/jhdf/src/test/resources/scripts/fill_values.py +++ b/jhdf/src/test/resources/scripts/fill_values.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/fletcher_datasets.py b/jhdf/src/test/resources/scripts/fletcher_datasets.py index c166323e..0707a2fe 100644 --- a/jhdf/src/test/resources/scripts/fletcher_datasets.py +++ b/jhdf/src/test/resources/scripts/fletcher_datasets.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/float_special_values.py b/jhdf/src/test/resources/scripts/float_special_values.py index fc47ec1e..0ca1458d 100644 --- a/jhdf/src/test/resources/scripts/float_special_values.py +++ b/jhdf/src/test/resources/scripts/float_special_values.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/large_groups.py b/jhdf/src/test/resources/scripts/large_groups.py index 22dea02c..3de6677c 100644 --- a/jhdf/src/test/resources/scripts/large_groups.py +++ b/jhdf/src/test/resources/scripts/large_groups.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/make_test_files.py b/jhdf/src/test/resources/scripts/make_test_files.py index aa0f72cc..7c3873df 100644 --- a/jhdf/src/test/resources/scripts/make_test_files.py +++ b/jhdf/src/test/resources/scripts/make_test_files.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/medium_groups.py b/jhdf/src/test/resources/scripts/medium_groups.py index 589a4f72..63706d9c 100644 --- a/jhdf/src/test/resources/scripts/medium_groups.py +++ b/jhdf/src/test/resources/scripts/medium_groups.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/missing_filter.py b/jhdf/src/test/resources/scripts/missing_filter.py index 586db768..d3efbba8 100644 --- a/jhdf/src/test/resources/scripts/missing_filter.py +++ b/jhdf/src/test/resources/scripts/missing_filter.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/odd_datasets.py b/jhdf/src/test/resources/scripts/odd_datasets.py index f164faee..8ad1f2a8 100644 --- a/jhdf/src/test/resources/scripts/odd_datasets.py +++ b/jhdf/src/test/resources/scripts/odd_datasets.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/opaque_datasets.py b/jhdf/src/test/resources/scripts/opaque_datasets.py index eeb74e1f..4861cd57 100644 --- a/jhdf/src/test/resources/scripts/opaque_datasets.py +++ b/jhdf/src/test/resources/scripts/opaque_datasets.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/ordered_group.py b/jhdf/src/test/resources/scripts/ordered_group.py index 659a3c4d..b9238684 100644 --- a/jhdf/src/test/resources/scripts/ordered_group.py +++ b/jhdf/src/test/resources/scripts/ordered_group.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/scalar_empty_datasets.py b/jhdf/src/test/resources/scripts/scalar_empty_datasets.py index 96645660..165ced35 100644 --- a/jhdf/src/test/resources/scripts/scalar_empty_datasets.py +++ b/jhdf/src/test/resources/scripts/scalar_empty_datasets.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/string_datasets.py b/jhdf/src/test/resources/scripts/string_datasets.py index 23832bcf..b7136f3b 100644 --- a/jhdf/src/test/resources/scripts/string_datasets.py +++ b/jhdf/src/test/resources/scripts/string_datasets.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/userblock.py b/jhdf/src/test/resources/scripts/userblock.py index eae9a8b2..82f36ca5 100644 --- a/jhdf/src/test/resources/scripts/userblock.py +++ b/jhdf/src/test/resources/scripts/userblock.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/scripts/vlen_datasets.py b/jhdf/src/test/resources/scripts/vlen_datasets.py index 4bb53b46..8b3735e2 100644 --- a/jhdf/src/test/resources/scripts/vlen_datasets.py +++ b/jhdf/src/test/resources/scripts/vlen_datasets.py @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file # ------------------------------------------------------------------------------- diff --git a/jhdf/src/test/resources/simplelogger.properties b/jhdf/src/test/resources/simplelogger.properties index db962e93..725e1b63 100644 --- a/jhdf/src/test/resources/simplelogger.properties +++ b/jhdf/src/test/resources/simplelogger.properties @@ -3,7 +3,7 @@ # # http://jhdf.io # -# Copyright (c) 2023 James Mudd +# Copyright (c) 2024 James Mudd # # MIT License see 'LICENSE' file #-------------------------------------------------------------------------------