Merge "Make StatsEvent.newBuilder() static"

This commit is contained in:
TreeHugger Robot
2019-11-12 22:19:34 +00:00
committed by Android (Google) Code Review

View File

@@ -63,7 +63,7 @@ public final class StatsEvent {
* Returns a new StatsEvent.Builder for building StatsEvent object.
**/
@NonNull
public StatsEvent.Builder newBuilder() {
public static StatsEvent.Builder newBuilder() {
return new StatsEvent.Builder(Buffer.obtain());
}