dap: delete unused function (#2720)

staticcheck reported a warning (U1000)
This commit is contained in:
Hyang-Ah Hana Kim 2021-09-24 01:17:01 -04:00 committed by GitHub
parent c7e2a9b6fb
commit eef04b9646
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,10 +0,0 @@
package dap
// min returns the lowest-valued integer
// between the two passed into it.
func min(i, j int) int {
if i < j {
return i
}
return j
}