Skip to content

Commit 56d6991

Browse files
committed
remove option and mark as implicit
1 parent 12d5688 commit 56d6991

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

example/basket/src/main/scala/org/finos/vuu/core/module/basket/BasketModule.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ object BasketModule extends DefaultModule {
7171
(table, vs) => new BasketTradingProvider(table, vs.tableContainer),
7272
(table, _, _, tableContainer) => ViewPortDef(
7373
columns = table.getTableDef.columns,
74-
service = new BasketTradingService(table, tableContainer, omsApi)
74+
service = new BasketTradingService(table, omsApi)(clock, tableContainer)
7575
)
7676
)
7777
.addTable(
@@ -102,7 +102,7 @@ object BasketModule extends DefaultModule {
102102
(table, vs) => new BasketTradingConstituentProvider(table, omsApi),
103103
(table, _, _, tableContainer) => ViewPortDef(
104104
columns = table.getTableDef.columns,
105-
service = new BasketTradingConstituentService(table, tableContainer)
105+
service = new BasketTradingConstituentService(table)(clock, tableContainer)
106106
)
107107
)
108108
.addTable(
@@ -144,7 +144,7 @@ object BasketModule extends DefaultModule {
144144
),
145145
(table, _, _, tableContainer) => ViewPortDef(
146146
columns = table.getTableDef.columns,
147-
service = new BasketTradingConstituentJoinService(table, tableContainer)
147+
service = new BasketTradingConstituentJoinService(table)(clock, tableContainer)
148148
)
149149
)
150150
.asModule()

0 commit comments

Comments
 (0)