Skip to content

Commit

Permalink
Clean-up and simplify Tracing-Options processing
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesWell authored and fedejeanne committed Oct 26, 2023
1 parent a586a7e commit 3a0442d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ private static Properties getOptions(IPluginModelBase model) {
private static void loadComments(InputStream stream, Properties modelOptions) throws IOException {
String prevComment = ""; //$NON-NLS-1$
try (BufferedReader bufferedReader = new BufferedReader(
// Properties.store() always uses ISO_8859_1 encoding
// Properties.store() always uses ISO_8859_1 encoding
new InputStreamReader(stream, StandardCharsets.ISO_8859_1))) {
for (String line; (line = bufferedReader.readLine()) != null;) {
if (line.startsWith("#") || line.trim().isEmpty()) { //$NON-NLS-1$
Expand Down

0 comments on commit 3a0442d

Please sign in to comment.