Fix issues with ItemMatcher.java returning incorrect values.

This commit is contained in:
Len 2026-08-04 14:38:46 -05:00
parent 5c3bbf4203
commit e7886b5e83

View File

@ -209,8 +209,7 @@ public class ItemMatcher {
if (mapView1 == null || mapView2 == null) if (mapView1 == null || mapView2 == null)
return false; return false;
if (mapView1.getId() == mapView2.getId()) return mapView1.getId() == mapView2.getId();
return true;
} }
return true; return true;
} }