Skip to content

Commit

Permalink
Add 'final's
Browse files Browse the repository at this point in the history
  • Loading branch information
arman-ddl committed Sep 3, 2024
1 parent fb49b99 commit 3d05bec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ public CompositeTableDataService(@NotNull String name, @NotNull final ServiceSel

@Override
@Nullable
public TableLocationProvider getRawTableLocationProvider(@NotNull TableKey tableKey,
@NotNull TableLocationKey tableLocationKey) {
public TableLocationProvider getRawTableLocationProvider(@NotNull final TableKey tableKey,
@NotNull final TableLocationKey tableLocationKey) {
final TableDataService[] services = serviceSelector.call(tableKey);

if (services == null || services.length == 0) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ public FilteredTableDataService(@NotNull final TableDataService serviceToFilter,

@Override
@Nullable
public TableLocationProvider getRawTableLocationProvider(@NotNull TableKey tableKey,
@NotNull TableLocationKey tableLocationKey) {
public TableLocationProvider getRawTableLocationProvider(@NotNull final TableKey tableKey,
@NotNull final TableLocationKey tableLocationKey) {
if (!locationKeyFilter.accept(tableLocationKey)) {
return null;
}
Expand Down

0 comments on commit 3d05bec

Please sign in to comment.