Skip to content

Commit

Permalink
Revert "Update isPropertySet to check parent config (apache#4112)"
Browse files Browse the repository at this point in the history
This reverts commit 4c3085b.

Reverting in favor of apache#4117
  • Loading branch information
ctubbsii committed Dec 23, 2023
1 parent 4c3085b commit a12f517
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,6 @@ public long getUpdateCount() {

@Override
public boolean isPropertySet(Property prop) {
if (parent != null) {
return copy.containsKey(prop.getKey()) || parent.isPropertySet(prop);
} else {
return copy.containsKey(prop.getKey());
}
return copy.containsKey(prop.getKey());
}
}

0 comments on commit a12f517

Please sign in to comment.