File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
core/src/main/scala/scalikejdbc/async Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import scalikejdbc.async.ShortenedNames._
22
22
/**
23
23
* Asynchronous Transactional Query
24
24
*/
25
- class AsyncTxQuery (sqls : Seq [SQL [_, _ ]]) {
25
+ class AsyncTxQuery (sqls : Seq [SQL [? , ? ]]) {
26
26
27
27
def future ()(implicit
28
28
session : SharedAsyncDBSession ,
Original file line number Diff line number Diff line change @@ -416,12 +416,12 @@ private[scalikejdbc] class RowDataResultSet(
416
416
417
417
override def getObject (
418
418
columnIndex : Int ,
419
- map : util.Map [String , Class [_ ]]
419
+ map : util.Map [String , Class [? ]]
420
420
): AnyRef = notsupported
421
421
422
422
override def getObject (
423
423
columnLabel : String ,
424
- map : util.Map [String , Class [_ ]]
424
+ map : util.Map [String , Class [? ]]
425
425
): AnyRef = notsupported
426
426
427
427
override def getObject [T ](columnIndex : Int , `type` : Class [T ]): T = {
You can’t perform that action at this time.
0 commit comments