util/scripts/maintainers.go: drop special case for "THE REST"

It's not useful anymore.

Change-Id: Iba7f10dc87301911ff5f73c182b41c268fba310a
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: https://review.coreboot.org/c/29658
Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Patrick Georgi 2018-11-16 12:41:19 +01:00
parent 501956750f
commit 9651058c42
1 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ func find_maintainer(fname string) {
for _, subsystem := range subsystems { for _, subsystem := range subsystems {
matched := match_file(fname, subsystem) matched := match_file(fname, subsystem)
if matched && subsystem.name != "THE REST" { if matched {
success = true success = true
fmt.Println(fname, "is in subsystem", fmt.Println(fname, "is in subsystem",
subsystem.name) subsystem.name)
@ -166,7 +166,7 @@ func find_unmaintained(fname string) {
for _, subsystem := range subsystems { for _, subsystem := range subsystems {
matched := match_file(fname, subsystem) matched := match_file(fname, subsystem)
if matched && subsystem.name != "THE REST" { if matched {
success = true success = true
fmt.Println(fname, "is in subsystem", fmt.Println(fname, "is in subsystem",
subsystem.name) subsystem.name)