Will Sargent

Results 199 comments of Will Sargent

As far as I can tell, there is not an annotation or a flag option to ignore a line of code, or to suppress unused checks in a package or...

There is the option of running the generated code through scalafix (which would remove unused imports but not the implicit vals) or setting up a subproject which contained twirl code...

@godenji see https://github.com/ghik/silencer as a possible option

This is the same root as https://github.com/playframework/playframework/issues/1795 -- square brackets are unsafe characters when unencoded in a URL. This is an open issue in akka-http at https://github.com/akka/akka-http/issues/210 where the hook...

It wouldn't help -- the code in 2.6.15 still expects there to be a non empty code: https://github.com/playframework/playframework/blob/2.6.x/framework/src/play/src/main/scala/play/api/i18n/Langs.scala#L95 ``` def apply(code: String): Lang = Lang(new Locale.Builder().setLanguageTag(code).build()) ``` This appears to...

@amvanbaren that example only covers one input type -- the situation here is when the input can be either JSON or form, so multiple input types are acceptable.

I think the problem is that the size is such that it runs into an OS or program limit: ```go log.Printf("[DEBUG] Saving file %s/%s", path, title) if err := file.Save(path,...

Feature request to have it in the list when you type `jabba ls-remote`

You're welcome to submit a patch. :-)

I wrote about something similar in Java https://tersesystems.com/blog/2019/07/28/triggering-diagnostic-logging-on-exception/