-
Bug
-
Resolution: Fixed
-
P3
-
12
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8216459 | 13 | Jim Laskey | P3 | Resolved | Fixed | b03 |
JDK-8217071 | 12.0.1 | Jim Laskey | P3 | Resolved | Fixed | b03 |
String::transform spec doesn't mention - what happens if function throws an exception?
E.g.
Function<String, String> function = str -> {throw new RuntimeException();};
"abc".transform(function);
This code throws RunTimeException when executed.
However String::transform spec has no mention that it can throw possible exception(s) thrown by function
E.g.
Function<String, String> function = str -> {throw new RuntimeException();};
"abc".transform(function);
This code throws RunTimeException when executed.
However String::transform spec has no mention that it can throw possible exception(s) thrown by function
- backported by
-
JDK-8216459 String::transform spec clarification
-
- Resolved
-
-
JDK-8217071 String::transform spec clarification
-
- Resolved
-
- csr for
-
JDK-8215153 String::transform spec clarification
-
- Closed
-
- relates to
-
JDK-8203442 String::transform
-
- Resolved
-
-
JDK-8203703 String::transform
-
- Closed
-