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.

(cherry picked from commit fc1183f)
  • Loading branch information
Googler authored and mai93 committed Nov 23, 2023
1 parent ef80729 commit ea190f9
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 ea190f9

Please sign in to comment.