Skip to content

Commit

Permalink
Update visibility of createPropertyDetails
Browse files Browse the repository at this point in the history
  • Loading branch information
akang31 committed Jun 5, 2023
1 parent 14bf667 commit f28927d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public boolean instrumentationEnabled() {
return !getState().getInstrumentedKeys().isEmpty();
}

public PropertyDetails createPropertyDetails(String key, Object value) {
protected PropertyDetails createPropertyDetails(String key, Object value) {
return new PropertyDetails(key, null, value);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public synchronized void removeListener(ConfigListener listener) {
}

@Override
public PropertyDetails createPropertyDetails(String key, Object value) {
protected PropertyDetails createPropertyDetails(String key, Object value) {
return new PropertyDetails(prefix + key, null, value);
}
}

0 comments on commit f28927d

Please sign in to comment.