Skip to content

Commit

Permalink
review: add @NotNull
Browse files Browse the repository at this point in the history
  • Loading branch information
dimas-b committed Nov 25, 2024
1 parent cd7cbf9 commit 778706e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public PolarisEclipseLinkMetaStoreSessionImpl(
@NotNull RealmContext realmContext,
@Nullable String confFile,
@Nullable String persistenceUnitName,
PrincipalSecretsGenerator secretsGenerator) {
@NotNull PrincipalSecretsGenerator secretsGenerator) {
LOGGER.debug(
"Creating EclipseLink Meta Store Session for realm {}", realmContext.getRealmIdentifier());
emf = createEntityManagerFactory(realmContext, confFile, persistenceUnitName);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class PolarisTreeMapMetaStoreSessionImpl implements PolarisMetaStoreSessi
public PolarisTreeMapMetaStoreSessionImpl(
@NotNull PolarisTreeMapStore store,
@NotNull PolarisStorageIntegrationProvider storageIntegrationProvider,
PrincipalSecretsGenerator secretsGenerator) {
@NotNull PrincipalSecretsGenerator secretsGenerator) {

// init store
this.store = store;
Expand Down

0 comments on commit 778706e

Please sign in to comment.