Skip to content

Commit

Permalink
Merge pull request #570 from TonioGela/ST_4.3.1
Browse files Browse the repository at this point in the history
Updating String template to 4.3.1
  • Loading branch information
eed3si9n committed May 29, 2021
2 parents 8153863 + aadf0af commit fa29121
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions library/src/main/scala/g8.scala
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ object G8 {
group.setListener(new STErrorHandler)
group.registerRenderer(
classOf[AugmentedString],
new AttributeRenderer {
override def toString(o: AnyRef, format: String, locale: Locale) =
renderer.toString(o.asInstanceOf[AugmentedString], format, locale)
new AttributeRenderer[AugmentedString] {
override def toString(o: AugmentedString, format: String, locale: Locale) =
renderer.toString(o, format, locale)
}
)

Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sbt._

object Dependencies {
val stringTemplate = "org.antlr" % "ST4" % "4.2"
val stringTemplate = "org.antlr" % "ST4" % "4.3.1"
val commonsIo = "commons-io" % "commons-io" % "2.9.0"
val plexusArchiver = "org.codehaus.plexus" % "plexus-archiver" % "2.7.1" excludeAll (
ExclusionRule("org.apache.commons", "commons-compress"),
Expand Down

0 comments on commit fa29121

Please sign in to comment.