diff --git a/common/browser_context_options.go b/common/browser_context_options.go index f20a99da9..41626282c 100644 --- a/common/browser_context_options.go +++ b/common/browser_context_options.go @@ -11,11 +11,6 @@ type Geolocation struct { Accuracy float64 `js:"accuracy"` } -// NewGeolocation creates a new instance of Geolocation. -func NewGeolocation() *Geolocation { - return &Geolocation{} -} - // Validate validates the [Geolocation]. func (g *Geolocation) Validate() error { if g.Longitude < -180 || g.Longitude > 180 {