Skip to content

Commit

Permalink
build: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Gemorroj committed Jan 28, 2025
1 parent 87f16a7 commit d40b35c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/Parsers/Systemd.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ private static function targets(): ?array
[$unit, $load, $active, $sub, $description] = \preg_split('/\s+/', $line, 5);

$out[] = [
'type' => 'target',
'name' => $unit,
'loaded' => 'loaded' === $load,
'started' => 'active' === $active,
Expand Down Expand Up @@ -80,7 +79,6 @@ private static function services(): ?array
[$unit, $load, $active, $sub, $description] = \preg_split('/\s+/', $line, 5);

$out[] = [
'type' => 'service',
'name' => $unit,
'loaded' => 'loaded' === $load,
'started' => 'active' === $active,
Expand Down

0 comments on commit d40b35c

Please sign in to comment.