Skip to content

Commit

Permalink
use equalsIgnoreCase instead of equals
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvaroVega committed Oct 26, 2023
1 parent 031d7b0 commit 7a000c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ protected void splitFeatureListIfExists(List<Feature> featureArray,
Feature serverFeature = serverFeatures.get(i);
String serverFeatureId = serverFeature.getAttributes().get(uniqueField).toString();

if (featureId.equals(serverFeatureId)) {
if (featureId.equalsIgnoreCase(serverFeatureId)) {
found = true;
Integer oid = serverFeature.getObjectId();
feature.setObjectId(oid);
Expand Down

0 comments on commit 7a000c4

Please sign in to comment.