From 09aec3606ffeea27ab33edc69c186d5aba10c9b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Zamanillo?= Date: Sat, 19 Sep 2020 23:31:51 +0200 Subject: [PATCH] Removed unnecessary leading newline --- pkg/runner/runner.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/runner/runner.go b/pkg/runner/runner.go index c1ac941..da262e3 100644 --- a/pkg/runner/runner.go +++ b/pkg/runner/runner.go @@ -39,7 +39,6 @@ func NewRunner(options *Options) (*Runner, error) { // RunEnumeration runs the subdomain enumeration flow on the targets specified func (r *Runner) RunEnumeration(ctx context.Context) error { - // Check if only a single domain is sent as input. Process the domain now. if r.options.Domain != "" { return r.EnumerateSingleDomain(ctx, r.options.Domain, r.options.Output, false)