mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-08-04 12:05:29 -04:00
PNM clean-up: Avoid leading/trailing whitespace in comments.
This commit is contained in:
parent
4d190892df
commit
5347015cbd
@ -82,9 +82,9 @@ final class PNMHeaderParser extends HeaderParser {
|
|||||||
|
|
||||||
if (read == '#') {
|
if (read == '#') {
|
||||||
// Read rest of the line as comment
|
// 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);
|
comments.add(comment);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user