Details
-
Type:
Bug
-
Status: Resolved
-
Priority:
P4
-
Resolution: Fixed
-
Affects Version/s: openjdk7u
-
Fix Version/s: openjdk7u
-
Component/s: security-libs
-
Labels:None
-
Introduced In Build:b00
-
Introduced In Version:
-
Resolved In Build:master
-
CPU:generic
-
OS:generic
Description
In translating:
feed = Stream.of(input).collect(Collectors.joining("\n")) + "\n";
to OpenJDK 7 code, we end up with too many new-lines as our version always adds element + '\n', while the collector only inserts them between elements, not after the final element. Thus the 8 version needs that final
"\n" but the 7 version doesn't.
feed = Stream.of(input).collect(Collectors.joining("\n")) + "\n";
to OpenJDK 7 code, we end up with too many new-lines as our version always adds element + '\n', while the collector only inserts them between elements, not after the final element. Thus the 8 version needs that final
"\n" but the 7 version doesn't.
Attachments
Issue Links
- relates to
-
JDK-8171319 keytool should print out warnings when reading or generating cert/cert req using weak algorithms
-
- Closed
-