From fef4ad10c4afd8c211d0a95681b45637d807ad0c Mon Sep 17 00:00:00 2001 From: tpietzsch Date: Thu, 28 Mar 2024 10:56:00 +0100 Subject: [PATCH 1/3] POM: Update parent to pom-scijava-37.0.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 035f84d..1b9a6d3 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.scijava pom-scijava - 33.2.0 + 37.0.0 From 0f8688619fd353dae3f6718b492566fc1991a2ad Mon Sep 17 00:00:00 2001 From: tpietzsch Date: Tue, 7 May 2024 13:33:18 +0200 Subject: [PATCH 2/3] POM: Bump dependency version imglib2-7.0.0 --- pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pom.xml b/pom.xml index 1b9a6d3..6702ef2 100644 --- a/pom.xml +++ b/pom.xml @@ -79,6 +79,8 @@ bsd_2 Howard Hughes Medical Institute. + + 7.0.0 From 6b9f9bc1e6c1c856e4d3b27352659d7aba5fc112 Mon Sep 17 00:00:00 2001 From: tpietzsch Date: Thu, 28 Mar 2024 11:14:08 +0100 Subject: [PATCH 3/3] Implement Typed::getType where necessary --- src/main/java/net/imglib2/img/unsafe/UnsafeImg.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/main/java/net/imglib2/img/unsafe/UnsafeImg.java b/src/main/java/net/imglib2/img/unsafe/UnsafeImg.java index 861e25a..8cd374c 100644 --- a/src/main/java/net/imglib2/img/unsafe/UnsafeImg.java +++ b/src/main/java/net/imglib2/img/unsafe/UnsafeImg.java @@ -6,13 +6,13 @@ * %% * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: - * + * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. - * + * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE @@ -225,4 +225,10 @@ public Object subIntervalIterationOrder( final Interval interval ) { return new FlatIterationOrder( interval ); } + + @Override + public T getType() + { + return linkedType; + } }