Files
Bas Leijdekkersandintellij-monorepo-bot 4a28c011bd Java: nicer quick-fix text
GitOrigin-RevId: c454f730670badff1df440b76adbd45de34c273a
2025-09-25 18:47:50 +00:00

6 lines
121 B
Java

// "Remove redundant argument to call 'trim()'" "true-preview"
class A {
public A() {
String s = "xyz".trim()
}
}