﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
20129	[patch] Fix typos and misspellings in the code	gaben	team	"Mostly comments affected, but also some method and class names as well, so please review carefully. A few comment lines were over 120 column length, so I split these to better fit in code editors window.

One place I made code logic change, but it's just a simplification, see below

{{{#!patch
Index: src/org/openstreetmap/josm/data/osm/DataSet.java
===================================================================
--- src/org/openstreetmap/josm/data/osm/DataSet.java	(revision 17329)
+++ src/org/openstreetmap/josm/data/osm/DataSet.java	(date 1605986651413)
@@ -1149,7 +1149,7 @@
                     DataSourceRemovedEvent clearEvent = new DataSourceRemovedEvent(
                             this, new LinkedHashSet<>(from.dataSources), from.dataSources.stream());
                     if (from.dataSources.stream().filter(dataSource -> !dataSources.contains(dataSource))
-                            .map(dataSources::add).filter(Boolean.TRUE::equals).count() > 0) {
+                            .anyMatch(dataSources::add)) {
                         cachedDataSourceArea = null;
                         cachedDataSourceBounds = null;
                     }
}}}"	enhancement	closed	minor	20.12	Core	latest	fixed	typo	
