File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
src/main/kotlin/spp/protocol/service Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ import java.time.Instant
39
39
*/
40
40
@ProxyGen
41
41
@VertxGen
42
- @Suppress(" TooManyFunctions" ) // public API
42
+ @Suppress(" TooManyFunctions" , " unused " ) // public API
43
43
interface LiveInstrumentService {
44
44
45
45
@GenIgnore
@@ -168,13 +168,7 @@ interface LiveInstrumentService {
168
168
return getLiveInstrument(id, false )
169
169
}
170
170
171
- @GenIgnore
172
- fun getLiveInstrument (id : String , includeArchive : Boolean ): Future <LiveInstrument ?> {
173
- return getLiveInstrumentById(id, includeArchive)
174
- }
175
-
176
- @Deprecated(" use getLiveInstrument" , ReplaceWith (" getLiveInstrument(id)" ))
177
- fun getLiveInstrumentById (id : String , includeArchive : Boolean ): Future <LiveInstrument ?>
171
+ fun getLiveInstrument (id : String , includeArchive : Boolean ): Future <LiveInstrument ?>
178
172
fun getLiveInstrumentsByIds (ids : List <String >): Future <List <LiveInstrument >>
179
173
fun getLiveInstrumentsByLocation (location : LiveSourceLocation ): Future <List <LiveInstrument >>
180
174
You can’t perform that action at this time.
0 commit comments