Skip to content
Merged
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 @@ -19,7 +19,6 @@
package org.apache.polaris.core.context;

import org.apache.polaris.core.PolarisCallContext;
import org.apache.polaris.core.PolarisDiagnostics;

/**
* Stores elements associated with an individual REST request such as RealmContext, caller
Expand All @@ -41,10 +40,6 @@ static CallContext getCurrentContext() {
return CURRENT_CONTEXT.get();
}

static PolarisDiagnostics getDiagnostics() {
return CURRENT_CONTEXT.get().getPolarisCallContext().getDiagServices();
}

static void unsetCurrentContext() {
CURRENT_CONTEXT.remove();
}
Expand Down
Loading