-
Bug
-
Resolution: Fixed
-
P4
-
21
-
b09
The following code is supposed to print the beginning and end of long content in TextTree nodes.
return (s.length() < 32)
? s
: s.substring(0, 16) + "..." + s.substring(16);
Instead, it always prints all the content for long strings. The second substring should be `s.substring(s.length() - 16)`
return (s.length() < 32)
? s
: s.substring(0, 16) + "..." + s.substring(16);
Instead, it always prints all the content for long strings. The second substring should be `s.substring(s.length() - 16)`
- relates to
-
JDK-8300914 Allow `@` as an escape in documentation comments
- Resolved