Skip to content

Commit

Permalink
scalameta 4.9.x
Browse files Browse the repository at this point in the history
  • Loading branch information
bjaglin authored and tgodzik committed Feb 22, 2024
1 parent 6ada945 commit ffa8c1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ lazy val sharedJavaSettings = List(
)

val V = new {
val scalameta = "4.8.15"
val scalameta = "4.9.0"
val munit = "1.0.0-M11"
val coursier = "1.0.19"
val scalacheck = "1.17.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ object Instrumenter {

def stringLiteral(string: String): String = {
import scala.meta.internal.prettyprinters._
enquote(string, DoubleQuotes)
DoubleQuotes(string)
}

def wrapBody(body: String): String = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ object Instrumenter {

def stringLiteral(string: String): String = {
import scala.meta.internal.prettyprinters._
enquote(string, DoubleQuotes)
DoubleQuotes(string)
}

def wrapBody(body: String): String = {
Expand Down

0 comments on commit ffa8c1f

Please sign in to comment.