core: Place Nullable annotation before modifiers

Since Nullable is not a type annotation, it is normal to put it before any
modifiers (like "private"). This fixes a lint failure.
This commit is contained in:
Eric Anderson 2019-02-11 15:26:30 -08:00
parent efa2e47335
commit 1bead99241
1 changed files with 2 additions and 2 deletions

View File

@ -68,8 +68,8 @@ public interface ClientTransportFactory extends Closeable {
public static final class ClientTransportOptions {
private String authority = "unknown-authority";
private Attributes eagAttributes = Attributes.EMPTY;
private @Nullable String userAgent;
private @Nullable HttpConnectProxiedSocketAddress connectProxiedSocketAddr;
@Nullable private String userAgent;
@Nullable private HttpConnectProxiedSocketAddress connectProxiedSocketAddr;
public String getAuthority() {
return authority;