Skip to content

Commit

Permalink
make store of ValueStore available from external
Browse files Browse the repository at this point in the history
  • Loading branch information
danielfeismann committed Oct 29, 2024
1 parent c8df5d0 commit adfa724
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/edu/ie3/simona/agent/ValueStore.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import scala.collection.SortedMap
*/
final case class ValueStore[+D](
maxTickSpan: Long,
private val store: SortedMap[Long, D] = SortedMap.empty[Long, D],
store: SortedMap[Long, D] = SortedMap.empty[Long, D],
) {

/** Determine the lastly known data tick, if available. Includes the given
Expand Down

0 comments on commit adfa724

Please sign in to comment.