blob: e22e554ca3881a5cc076f410914f6190b9c05afe [file]
// Copyright (c) 2026, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.blastradius;
import java.util.Collection;
public interface BlastRadiusReporter {
void report(Collection<RootSetBlastRadiusForRule> blastRadius);
static BlastRadiusReporter create() {
return new BlastRadiusOrderedByNumberOfItemsReporter();
}
}