Simplify deduplicate-inferior-packages

Use the a-version and b-version variables, rather than calling the functions
again.
This commit is contained in:
Christopher Baines 2022-03-04 14:20:41 +00:00
parent 8ab72e633a
commit 0cc749a1fa

View file

@ -775,8 +775,8 @@ WHERE job_id = $1")
(b-location (inferior-package-location b)))
(< (location-line a-location)
(location-line b-location)))
(string<? (inferior-package-version a)
(inferior-package-version b))))
(string<? a-version
b-version)))
(string<? a-name
b-name)))))))