Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix incorrect comparator usage in FinalizingFieldAccessPostAggregator #16555

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
undo add type arg
  • Loading branch information
kgyrtkirk committed Jun 7, 2024
commit 2ced98260fa8b1bf0f673de4a60b9d9b6c0d8580
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public String getTypeName()
}

@Override
public ComplexMetricExtractor<ApproximateHistogram> getExtractor()
public ComplexMetricExtractor getExtractor()
{
return new ComplexMetricExtractor<ApproximateHistogram>()
return new ComplexMetricExtractor()
{
@Override
public Class<ApproximateHistogram> extractedClass()
Expand Down