Removed some unused functions

This commit is contained in:
2024-07-01 12:16:01 +03:00
parent 9cbc36f869
commit eae1e05102
2 changed files with 0 additions and 26 deletions
-8
View File
@@ -56,11 +56,3 @@ func stringSliceRemoveEmpty(s []string) []string {
}
return r
}
func byteArrayToString(bs []byte) string {
b := make([]byte, len(bs))
for i, v := range bs {
b[i] = v
}
return string(b)
}