Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
removes unecessary parens
  • Loading branch information
FMorschel committed May 19, 2025
commit 1665222d9e35d62579654888b17348bc293ac739
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down