Skip to content

Commit

Permalink
Volume: Generalize converterSetups from ArrayList to List for RAISour…
Browse files Browse the repository at this point in the history
…ce and SpimDataMinimalSource
  • Loading branch information
skalarproduktraum committed Apr 18, 2024
1 parent db54e1c commit 408f011
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/graphics/scenery/volumes/Volume.kt
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ open class Volume(
@Transient
val sources: List<SourceAndConverter<*>>,
@Transient
val converterSetups: ArrayList<ConverterSetup>,
val converterSetups: List<ConverterSetup>,
val numTimepoints: Int
) : VolumeDataSource()
class RAISource<T: NumericType<T>>(
Expand All @@ -244,7 +244,7 @@ open class Volume(
@Transient
val sources: List<SourceAndConverter<T>>,
@Transient
val converterSetups: ArrayList<ConverterSetup>,
val converterSetups: List<ConverterSetup>,
val numTimepoints: Int,
@Transient
val cacheControl: CacheControl? = null,
Expand Down

0 comments on commit 408f011

Please sign in to comment.