File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1- RemoveUnused.imports = true
1+ rules = [
2+ RemoveUnused
3+ ]
Original file line number Diff line number Diff line change @@ -85,7 +85,6 @@ trait ScalaSql extends Common{
8585 | implicit
8686 | ${commaSep(j => s " q $j: Queryable.Row[Q $j, R $j] " )}
8787 |): Queryable.Row[( ${commaSep(j => s " Q $j" )}), ( ${commaSep(j => s " R $j" )})] = {
88- | import scalasql.core.SqlStr.SqlStringSyntax
8988 | new Queryable.Row.TupleNQueryable(
9089 | Seq( ${commaSep(j => s " q $j.walkLabels() " )}),
9190 | t => Seq( ${commaSep(j => s " q $j.walkExprs(t._ $j) " )}),
@@ -99,7 +98,7 @@ trait ScalaSql extends Common{
9998 os.write(
10099 T .dest / " Generated.scala" ,
101100 s """ package scalasql.core.generated
102- |import scalasql.core.{ Queryable, Expr}
101+ |import scalasql.core.Queryable
103102 |trait QueryableRow{
104103 | ${queryableRowDefs.mkString(" \n " )}
105104 |}
You can’t perform that action at this time.
0 commit comments