Skip to content

Commit

Permalink
LocalPolarisMetaStoreManagerFactory: remove unnecessary type parameter (
Browse files Browse the repository at this point in the history
  • Loading branch information
adutra authored Aug 2, 2024
1 parent 5c78eef commit db3a8dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@
*/
@JsonTypeName("eclipse-link")
public class EclipseLinkPolarisMetaStoreManagerFactory
extends LocalPolarisMetaStoreManagerFactory<
PolarisEclipseLinkStore, PolarisEclipseLinkMetaStoreSessionImpl> {
extends LocalPolarisMetaStoreManagerFactory<PolarisEclipseLinkStore> {
@JsonProperty("conf-file")
private String confFile;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@
* PolarisMetaStoreManager} using an underlying meta store to store and retrieve all Polaris
* metadata.
*/
public abstract class LocalPolarisMetaStoreManagerFactory<
StoreType, SessionType extends PolarisMetaStoreSession>
public abstract class LocalPolarisMetaStoreManagerFactory<StoreType>
implements MetaStoreManagerFactory {

Map<String, PolarisMetaStoreManager> metaStoreManagerMap = new HashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@

@JsonTypeName("in-memory")
public class InMemoryPolarisMetaStoreManagerFactory
extends LocalPolarisMetaStoreManagerFactory<
PolarisTreeMapStore, PolarisTreeMapMetaStoreSessionImpl> {
extends LocalPolarisMetaStoreManagerFactory<PolarisTreeMapStore> {
Set<String> bootstrappedRealms = new HashSet<>();

@Override
Expand Down

0 comments on commit db3a8dc

Please sign in to comment.