fix(): remove unused recursive code (#13528)

This commit is contained in:
david-leifker 2025-05-15 15:06:48 -05:00 committed by GitHub
parent 53c25adc9b
commit 064e3618f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -82,10 +82,4 @@ public interface RecommendationSource {
.setRenderType(getRenderType())
.setContent(new RecommendationContentArray(recommendations)));
}
// retaining this for backward compatibility
default Optional<RecommendationModule> getRecommendationModule(
@Nonnull OperationContext opContext, @Nonnull RecommendationRequestContext requestContext) {
return getRecommendationModule(opContext, requestContext);
}
}