squid:UselessParenthesesCheck - Useless parentheses around expressions should be removed to prevent any misunderstanding

This commit is contained in:
Mohammed Ezzat
2016-02-23 20:57:55 +02:00
parent ab19c47415
commit 046e131119
10 changed files with 13 additions and 13 deletions

View File

@ -71,6 +71,6 @@ public final class Dispatcher {
}
private void dispatchAction(Action action) {
stores.stream().forEach((store) -> store.onAction(action));
stores.stream().forEach(store -> store.onAction(action));
}
}

View File

@ -44,6 +44,6 @@ public abstract class Store {
}
protected void notifyChange() {
views.stream().forEach((view) -> view.storeChanged(this));
views.stream().forEach(view -> view.storeChanged(this));
}
}