diff --git a/src/util/has.scad b/src/util/has.scad index c0326fda..66466c13 100644 --- a/src/util/has.scad +++ b/src/util/has.scad @@ -8,8 +8,4 @@ * **/ -use ; - -function has(lt, elem, sorted = false) = - sorted ? bsearch(lt, elem) != -1 : - search([elem], lt) != [[]]; \ No newline at end of file +function has(lt, elem) = search([elem], lt) != [[]]; \ No newline at end of file