PNM clean-up: Avoid leading/trailing whitespace in comments.

(cherry picked from commit 5347015cbd0bfc7fcab4b1840e3beeabafb905bf)
This commit is contained in:
Harald Kuhr 2022-02-14 19:27:55 +01:00
parent b51e8ccf6e
commit 16c78052ee

View File

@ -82,9 +82,9 @@ final class PNMHeaderParser extends HeaderParser {
if (read == '#') {
// Read rest of the line as comment
String comment = readLineUTF8(input);
String comment = readLineUTF8(input).trim();
if (!comment.trim().isEmpty()) {
if (!comment.isEmpty()) {
comments.add(comment);
}