On Wed, 6 Apr 2022 10:02:10 GMT, Tejesh R <d...@openjdk.java.net> wrote:
> getText function returned extra endOfLine when appended. The reason was in > `EditorEditorKit` class, `write(Writer out, Document doc, int pos, int len)` > method, where translation happens from buffer to Out(Writer Object) if > endOfLine is other than '\n' ( which is '\r\n' in windows). In order to write > each line till End of line, the string till '\n' is written including '\r' > and again endOfLine is written which results in extra Carriage Return. To > solve this issue, a Condition is added which checks if previous character to > '\n' is '\r', if true then whole string except Carriage Return ('\r') is > written, else whole string till before '\n' is written. This pull request has been closed without being integrated. ------------- PR: https://git.openjdk.java.net/jdk/pull/8122