Skip to content

Commit

Permalink
added more lintered files
Browse files Browse the repository at this point in the history
  • Loading branch information
scmacdon committed Jun 10, 2024
1 parent 6705af8 commit 450538e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ suspend fun getStockTrades(streamNameVal: String?) {
streamName = streamNameVal
shardIteratorType = ShardIteratorType.fromValue("TRIM_HORIZON")
shardId = id
},
}
)
shardIteratorVal = shardIteratorResult.shardIterator.toString()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class StockTrade {
*/
enum class TradeType {
BUY,
SELL,
SELL
}

var tickerSymbol: String? = null
Expand Down Expand Up @@ -75,6 +75,6 @@ class StockTrade {
tradeType,
quantity,
tickerSymbol,
price,
price
)
}
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ class StockTradeGenerator {

private class StockPrice constructor(
var tickerSymbol: String,
var price: Double,
var price: Double
)
}

0 comments on commit 450538e

Please sign in to comment.