Uh oh!
There was an error while loading. Please reload this page.
This repository was archived by the owner on Jul 6, 2026. It is now read-only.
This repository was archived by the owner on Jul 6, 2026. It is now read-only.
There was an error while loading. Please reload this page.
\u## in doc #3005
This likely result in “illegal Unicode escape”. A typical case be
domain\\usernamein Swagger description.Some step in the chain (I think it be m4 / tsp compiler) would make it
domain\usernamein code-model.yamlThen
\u##is now parsed as escape for Unicode, which typically fails Java compiler.Should we encode it back to e.g.
domain\\username?(checking every "description" text for this could affect performance)