Skip to content

Commit

Permalink
Fix npe, this functionality should be deprecated but we needed it for…
Browse files Browse the repository at this point in the history
… the adapters backwards compatibility
  • Loading branch information
ramari16 committed Sep 18, 2024
1 parent acf1147 commit 8237460
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@ public Optional<VariableVariantMasks> getMasks(String path, VariantBucketHolder<

@Override
public Set<String> getInfoStoreColumns() {
return null;
return Set.of();
}

@Override
public Set<String> getInfoStoreValues(String conceptPath) {
return null;
return Set.of();
}

@Override
public List<InfoColumnMeta> getInfoColumnMeta() {
return null;
return List.of();
}
}

0 comments on commit 8237460

Please sign in to comment.