Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ PrincipalSecretsResult resetPrincipalSecrets(
* @param clientId principal client id
* @param principalId id of the principal whose secrets should be deleted
*/
@Nonnull
void deletePrincipalSecrets(
@Nonnull PolarisCallContext callCtx, @Nonnull String clientId, long principalId);
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import org.apache.polaris.core.persistence.BasePersistence;

public interface PolarisEventManager {
@Nonnull
default void writeEvents(
@Nonnull PolarisCallContext callCtx, @Nonnull List<PolarisEvent> polarisEvents) {
BasePersistence ms = callCtx.getMetaStore();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ private void revokeGrantRecord(

/** {@inheritDoc} */
@Override
public @Nonnull void deletePrincipalSecrets(
public void deletePrincipalSecrets(
@Nonnull PolarisCallContext callCtx, @Nonnull String clientId, long principalId) {
// get metastore we should be using
BasePersistence ms = callCtx.getMetaStore();
Expand Down
Loading