Skip to content

Commit c7b481c

Browse files
committed
Make ZERO final
1 parent 50a9551 commit c7b481c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/org/elasticsearch/common/blobstore/BlobStoreActionStats.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*/
2626
public record BlobStoreActionStats(long operations, long requests) implements Writeable, ToXContentObject {
2727

28-
public static BlobStoreActionStats ZERO = new BlobStoreActionStats(0, 0);
28+
public static final BlobStoreActionStats ZERO = new BlobStoreActionStats(0, 0);
2929

3030
public BlobStoreActionStats(StreamInput in) throws IOException {
3131
this(in.readLong(), in.readLong());

0 commit comments

Comments
 (0)