Skip to content

Commit

Permalink
Cleanup some imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jatcwang committed Dec 19, 2023
1 parent 820d24e commit 1ad6a2f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 6 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,12 @@ lazy val free = project
classOf[java.sql.ResultSet]
)
},
freeGen2KleisliInterpreterImportExcludes := Set[Class[_]](
classOf[java.util.Map[_, _]],
classOf[java.sql.DriverPropertyInfo],
classOf[java.io.Writer],
classOf[java.io.OutputStream]
)
)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ import scala.concurrent.duration.FiniteDuration

// Types referenced in the JDBC API
import java.io.InputStream
import java.io.OutputStream
import java.io.Reader
import java.io.Writer
import java.lang.Class
import java.lang.String
import java.math.BigDecimal
Expand All @@ -30,7 +28,6 @@ import java.sql.Connection
import java.sql.DatabaseMetaData
import java.sql.Date
import java.sql.Driver
import java.sql.DriverPropertyInfo
import java.sql.NClob
import java.sql.ParameterMetaData
import java.sql.PreparedStatement
Expand All @@ -53,7 +50,6 @@ import java.sql.Time
import java.sql.Timestamp
import java.sql.{ Array => SqlArray }
import java.util.Calendar
import java.util.Map
import java.util.Properties
import java.util.concurrent.Executor
import java.util.logging.Logger
Expand Down

0 comments on commit 1ad6a2f

Please sign in to comment.