Skip to content

Commit ec9effb

Browse files
committed
Fix linting; comment out debug
1 parent 9a4068d commit ec9effb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Resources/ARMPartDecoder.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,4 +307,4 @@ public class Monitor.ARMPartDecoder {
307307

308308
return result;
309309
}
310-
}
310+
}

src/Resources/CPU.vala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,9 @@ public class Monitor.CPU : Object {
213213
part = (int)long.parse (values["CPU part"]);
214214
revision = (int)long.parse (values["CPU revision"]);
215215

216-
values.foreach ((key, value) => {
217-
debug("%s: %s\n", key, value);
218-
});
216+
// values.foreach ((key, value) => {
217+
// debug("%s: %s\n", key, value);
218+
// });
219219
}
220220

221221
private void parse_flags (string _flags, Gee.HashMap<string, string> flags, string path) {

0 commit comments

Comments
 (0)