Skip to content

Commit

Permalink
Merge pull request #222 from ekrich/topic/cleanup
Browse files Browse the repository at this point in the history
Update to use scala.jdk.CollectionConverters
  • Loading branch information
tgodzik authored Jun 26, 2024
2 parents 7c78b86 + 76040b0 commit 078f350
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package metaconfig
package sconfig

import org.ekrich.config._
import scala.collection.JavaConverters._
import scala.collection.mutable
import scala.jdk.CollectionConverters._
import metaconfig.internal.ConfGet

object SConfig2Class {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package metaconfig
package typesafeconfig

import com.typesafe.config._
import scala.collection.JavaConverters._
import scala.collection.mutable
import scala.jdk.CollectionConverters._

object TypesafeConfig2Class {
def gimmeConfFromString(string: String): Configured[Conf] =
Expand Down

0 comments on commit 078f350

Please sign in to comment.