Skip to content

Commit

Permalink
finish removal lol
Browse files Browse the repository at this point in the history
  • Loading branch information
danirabbit committed Feb 16, 2024
1 parent 3221cdf commit b355c65
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions src/Core/ComponentValidator.vala
Original file line number Diff line number Diff line change
Expand Up @@ -36,23 +36,6 @@ public class AppCenterCore.ComponentValidator : Object {
return false;
}

if (component.get_id () in hidden_app_list) {
return false;
}

return true;
}

private void parse_and_populate (string contents) {
foreach (string line in contents.split ("\n")) {
if (line.has_prefix ("#")) {
continue;
}

string token = line.strip ();
if (token != "") {
hidden_app_list.add (token);
}
}
}
}

0 comments on commit b355c65

Please sign in to comment.