diff --git a/core/pkg/resultshandling/reporter/v2/utils.go b/core/pkg/resultshandling/reporter/v2/utils.go index 352eb50b..c3e88431 100644 --- a/core/pkg/resultshandling/reporter/v2/utils.go +++ b/core/pkg/resultshandling/reporter/v2/utils.go @@ -5,26 +5,6 @@ import ( "strings" ) -/* unused for now -func maskID(id string) string { - sep := "-" - splitted := strings.Split(id, sep) - if len(splitted) != 5 { - return "" - } - str := splitted[0][:4] - splitted[0] = splitted[0][4:] - for i := range splitted { - for j := 0; j < len(splitted[i]); j++ { - str += "X" - } - str += sep - } - - return strings.TrimSuffix(str, sep) -} -*/ - func parseHost(urlObj *url.URL) { if strings.Contains(urlObj.Host, "http://") { urlObj.Scheme = "http"