i18n: don't create nested choices, escape special symbols in choice sides (IDEA-247804)

GitOrigin-RevId: dcb56f8bf352bc8f656edd85242be6b3c70af34d
This commit is contained in:
Anna Kozlova
2020-08-25 11:17:27 +00:00
committed by intellij-monorepo-bot
parent 608718b907
commit aa937e1f93
3 changed files with 4 additions and 4 deletions
@@ -1,5 +1,5 @@
class MyTest {
void f(boolean prefix){
String s = "Not a valid java identifier<caret> part in " + (prefix ? "prefix" : "suffix");
String s = "Not a valid java identifier<caret> part in " + (prefix ? "prefix" : "<br/>suffix");
}
}