Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aacc32b commit fe73187Copy full SHA for fe73187
dev-mode/play-routes-compiler/src/main/scala/play/routes/compiler/RoutesModels.scala
@@ -126,7 +126,8 @@ trait PathPart
126
* @param encode Whether this part should be encoded or not.
127
*/
128
case class DynamicPart(name: String, constraint: String, encode: Boolean) extends PathPart with Positional {
129
- override def toString = """DynamicPart("""" + name + "\", \"\"\"" + constraint + "\"\"\"," + encode + ")" // "
+ override def toString =
130
+ """DynamicPart("""" + name + "\", \"\"\"" + constraint + "\"\"\", encodeable=" + encode + ")" // "
131
}
132
133
/**
0 commit comments