- 
    Bug 
- 
    Resolution: Fixed
- 
     P4 P4
- 
    openjdk7u
- 
    None
- 
        b00
- 
        master
- 
        generic
- 
        generic
                    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.
- relates to
- 
                    JDK-8171319 keytool should print out warnings when reading or generating cert/cert req using weak algorithms -           
- Closed
 
-