Skip to content

Commit

Permalink
Fix BlazeProjectSystemBuildManager$BuildCallbackPublisher construct…
Browse files Browse the repository at this point in the history
…or signature

Nested classes registered as extensions are supposed to be static.

PiperOrigin-RevId: 584745816
  • Loading branch information
Googler authored and copybara-github committed Nov 23, 2023
1 parent 873a552 commit fc1183f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public static BlazeBuildCounter getInstance(Project project) {
* Class to publish BlazeBuildListener callbacks to {@link
* BlazeProjectSystemBuildManager#PROJECT_SYSTEM_BUILD_TOPIC}
*/
final class BuildCallbackPublisher implements BlazeBuildListener {
static final class BuildCallbackPublisher implements BlazeBuildListener {
@Override
public void buildStarting(Project project) {
BlazeBuildCounter.getInstance(project).onBuildStarted();
Expand Down

0 comments on commit fc1183f

Please sign in to comment.