From 1665222d9e35d62579654888b17348bc293ac739 Mon Sep 17 00:00:00 2001 From: FMorschel <52160996+FMorschel@users.noreply.github.com> Date: Mon, 19 May 2025 12:25:04 -0300 Subject: [PATCH] removes unecessary parens --- .../google_maps_flutter_web/lib/src/convert.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/google_maps_flutter/google_maps_flutter_web/lib/src/convert.dart b/packages/google_maps_flutter/google_maps_flutter_web/lib/src/convert.dart index 0eeddbc8b84..88ae0fb849c 100644 --- a/packages/google_maps_flutter/google_maps_flutter_web/lib/src/convert.dart +++ b/packages/google_maps_flutter/google_maps_flutter_web/lib/src/convert.dart @@ -225,7 +225,7 @@ gmaps.InfoWindowOptions? _infoWindowOptionsFromMarker(Marker marker) { // If both the title and snippet of an infowindow are empty, we don't really // want an infowindow... - if ((markerTitle.isEmpty) && (markerSnippet.isEmpty)) { + if (markerTitle.isEmpty && markerSnippet.isEmpty) { return null; }