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._
2222/**
2323 * Asynchronous Transactional Query
2424 */
25- class AsyncTxQuery (sqls : Seq [SQL [_, _ ]]) {
25+ class AsyncTxQuery (sqls : Seq [SQL [? , ? ]]) {
2626
2727 def future ()(implicit
2828 session : SharedAsyncDBSession ,
Original file line number Diff line number Diff line change @@ -416,12 +416,12 @@ private[scalikejdbc] class RowDataResultSet(
416416
417417 override def getObject (
418418 columnIndex : Int ,
419- map : util.Map [String , Class [_ ]]
419+ map : util.Map [String , Class [? ]]
420420 ): AnyRef = notsupported
421421
422422 override def getObject (
423423 columnLabel : String ,
424- map : util.Map [String , Class [_ ]]
424+ map : util.Map [String , Class [? ]]
425425 ): AnyRef = notsupported
426426
427427 override def getObject [T ](columnIndex : Int , `type` : Class [T ]): T = {
You can’t perform that action at this time.
0 commit comments