core: add @CheckReturnValue to Status.

This commit is contained in:
Michael Plump 2019-02-07 17:00:10 -05:00 committed by Carl Mastrangelo
parent eaca73473c
commit bcb11b1155
1 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,7 @@ import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;
import java.util.List; import java.util.List;
import java.util.TreeMap; import java.util.TreeMap;
import javax.annotation.CheckReturnValue;
import javax.annotation.Nullable; import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable; import javax.annotation.concurrent.Immutable;
@ -50,6 +51,7 @@ import javax.annotation.concurrent.Immutable;
* back out. * back out.
*/ */
@Immutable @Immutable
@CheckReturnValue
public final class Status { public final class Status {
/** /**