Fix warning about non-externalized String

Change-Id: I00b2132eac6d6ad2701d3f8151eb8c80ad6d679d
This commit is contained in:
Matthias Sohn 2022-11-20 20:30:45 +01:00
parent fe3908076e
commit 9fc9ae6de9
1 changed files with 1 additions and 2 deletions

View File

@ -947,8 +947,7 @@ private boolean isNoNewlineAtEndOfFile(
0, buf.length);
RawText lhrt = new RawText(buf);
return lhrt.getString(lhrt.size() - 1)
.equals("\\ No newline at end of file"); // $NON-NLS-1$,
// $NON-NLS-2$
.equals("\\ No newline at end of file"); //$NON-NLS-1$
}
/**