Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2008665 | 1.0.2 | Frank Yellin | P4 | Resolved | Fixed | 1.0.2 |
If you try to concatenate a string and a character, you get the string + the integer value of the character. For example,
char slash = '/';
"/usr/home" + slash
yields
/usr/home47
You should get
/usr/home/
char slash = '/';
"/usr/home" + slash
yields
/usr/home47
You should get
/usr/home/
- backported by
-
JDK-2008665 string + character does the wrong thing.
-
- Resolved
-