Skip to content

Commit

Permalink
Undo the extra propagation
Browse files Browse the repository at this point in the history
  • Loading branch information
akang31 committed Apr 12, 2024
1 parent dfb4a64 commit a723036
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,16 @@ private PrefixedViewConfigListener(PrefixedViewConfig pvc) {
@Override
public void onSourceConfigAdded(PrefixedViewConfig pvc, Config config) {
pvc.updateState(config);
pvc.notifyConfigAdded(pvc);
}

@Override
public void onSourceConfigRemoved(PrefixedViewConfig pvc, Config config) {
pvc.updateState(config);
pvc.notifyConfigRemoved(pvc);
}

@Override
public void onSourceConfigUpdated(PrefixedViewConfig pvc, Config config) {
pvc.updateState(config);
pvc.notifyConfigUpdated(pvc);
}

@Override
Expand Down

0 comments on commit a723036

Please sign in to comment.