From 408f011b3eecb6e0b0c7118cfbdaa795c76cc344 Mon Sep 17 00:00:00 2001 From: Ulrik Guenther Date: Thu, 18 Apr 2024 17:49:04 +0200 Subject: [PATCH] Volume: Generalize converterSetups from ArrayList to List for RAISource and SpimDataMinimalSource --- src/main/kotlin/graphics/scenery/volumes/Volume.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/graphics/scenery/volumes/Volume.kt b/src/main/kotlin/graphics/scenery/volumes/Volume.kt index d158fa593..cd947033f 100644 --- a/src/main/kotlin/graphics/scenery/volumes/Volume.kt +++ b/src/main/kotlin/graphics/scenery/volumes/Volume.kt @@ -235,7 +235,7 @@ open class Volume( @Transient val sources: List>, @Transient - val converterSetups: ArrayList, + val converterSetups: List, val numTimepoints: Int ) : VolumeDataSource() class RAISource>( @@ -244,7 +244,7 @@ open class Volume( @Transient val sources: List>, @Transient - val converterSetups: ArrayList, + val converterSetups: List, val numTimepoints: Int, @Transient val cacheControl: CacheControl? = null,