Skip to content

Commit f45a428

Browse files
committed
Moved to new Alpaca API cleanup 2
1 parent a25a3c5 commit f45a428

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

Diff for: roboquant-alpaca/src/main/kotlin/org/roboquant/alpaca/AlpacaLiveFeed.kt

+1
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ class AlpacaLiveFeed(
137137
/**
138138
* Subscribe to crypto market data b based on the passed [symbols] and [type]
139139
*/
140+
@Suppress("unused")
140141
fun subscribeCrypto(vararg symbols: String, type: PriceActionType = PriceActionType.PRICE_BAR) {
141142
// validateSymbols(symbols, availableCryptoMap)
142143
val s = symbols.toList()

Diff for: roboquant-charts/src/test/kotlin/org/roboquant/charts/TestData.kt

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ import org.roboquant.strategies.TestStrategy
3535
/**
3636
* Remove end-of-line characters so test results are the same on different operating-systems.
3737
*/
38+
@Suppress("unused")
3839
internal fun String.removeEOL() = this.replace("\n", "").replace("\r", "")
3940

4041
/**

Diff for: roboquant-questdb/src/main/kotlin/org/roboquant/questdb/extensions.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ internal inline fun CairoEngine.query(query: String, block: RecordCursor.() -> U
3838
}
3939
}
4040

41-
41+
@Suppress("unused")
4242
internal inline fun SqlExecutionContext.query(query: String, block: RecordCursor.() -> Unit) {
4343
cairoEngine.sqlCompiler.use {
4444
val fact = it.compile(query, this).recordCursorFactory

0 commit comments

Comments
 (0)