Fix compilation error (#28965)

closes #28964

Signed-off-by: mposolda <mposolda@gmail.com>
This commit is contained in:
Marek Posolda
2024-04-22 13:19:33 +02:00
committed by GitHub
parent 10544a5a93
commit b553fc2ae0
2 changed files with 0 additions and 9 deletions

View File

@@ -31,8 +31,4 @@ public interface OID4VCEnvironmentProviderFactory extends EnvironmentDependentPr
return Profile.isFeatureEnabled(Profile.Feature.OID4VC_VCI);
}
@Override
default boolean isSupported() {
return Profile.isFeatureEnabled(Profile.Feature.OID4VC_VCI);
}
}

View File

@@ -102,11 +102,6 @@ public class PreAuthorizedCodeGrantType extends OAuth2GrantTypeBase implements E
return Profile.isFeatureEnabled(Profile.Feature.OID4VC_VCI);
}
@Override
public boolean isSupported() {
return Profile.isFeatureEnabled(Profile.Feature.OID4VC_VCI);
}
@Override
public EventType getEventType() {
return EventType.CODE_TO_TOKEN;