Skip to content

Commit 8b3cb9f

Browse files
committed
patch: linting error in CPU.vala
1 parent 2e0b575 commit 8b3cb9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Resources/CPU.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,15 +215,15 @@ public class Monitor.CPU : Object {
215215
while ((flag_data = dis.read_line ()) != null) {
216216

217217
int comma_position = flag_data.index_of_char (',');
218-
218+
219219
if (comma_position == -1) break; // quick exit if no commas are in the line
220220

221221
string key = flag_data.substring (0, comma_position);
222222
string value = flag_data.substring (comma_position + 1)
223223
.replace ("\"", "")
224224
.replace (" ", " ")
225225
.strip ();
226-
226+
227227
all_flags.set (key, value.replace ("\r", ""));
228228
}
229229
debug ("Parsed file %s", csv_file.get_path ());

0 commit comments

Comments
 (0)