Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens committed Aug 12, 2024
1 parent c6c1f8a commit 5ce1a92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions core/src/main/java/org/polypheny/db/adapter/DataSource.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

import com.google.gson.JsonObject;
import com.google.gson.JsonSerializer;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import lombok.Getter;
Expand All @@ -38,7 +36,7 @@ public abstract class DataSource<S extends AdapterCatalog> extends Adapter<S> im
protected DataSource( final long adapterId, final String uniqueName, final Map<String, String> settings, final DeployMode mode, boolean dataReadOnly, S catalog, Set<DataModel> supportedModels ) {
super( adapterId, uniqueName, settings, mode, catalog );
this.dataReadOnly = dataReadOnly;
this.supportedDataModels = Set.copyOf(supportedModels);
this.supportedDataModels = Set.copyOf( supportedModels );
informationPage.setLabel( "Sources" );

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ public void addPartitionProperty( long tableId, PartitionProperty partitionPrope
}



@Override
public void updatePartition( long partitionId, Long partitionGroupId ) {

Expand All @@ -229,6 +228,7 @@ public void deleteAllocation( long allocId ) {
change();
}


@Override
public AllocationPlacement addPlacement( long logicalEntityId, long namespaceId, long adapterId ) {
long id = idBuilder.getNewPlacementId();
Expand Down

0 comments on commit 5ce1a92

Please sign in to comment.