ConfigInfo: Annotate MaxObjectSizeLimitInfo fields as nullable
Change-Id: If2051c9d47a0c93255a3fd8df7d0b99c502bc8d8
This commit is contained in:
parent
38fbdf9491
commit
199bafa88a
@ -14,6 +14,7 @@
|
||||
|
||||
package com.google.gerrit.extensions.api.projects;
|
||||
|
||||
import com.google.gerrit.common.Nullable;
|
||||
import com.google.gerrit.extensions.client.InheritableBoolean;
|
||||
import com.google.gerrit.extensions.client.ProjectState;
|
||||
import com.google.gerrit.extensions.client.SubmitType;
|
||||
@ -47,14 +48,14 @@ public class ConfigInfo {
|
||||
}
|
||||
|
||||
public static class MaxObjectSizeLimitInfo {
|
||||
/* The effective value. */
|
||||
public String value;
|
||||
/* The effective value. Null if not set. */
|
||||
@Nullable public String value;
|
||||
|
||||
/* The value configured on the project. */
|
||||
public String configuredValue;
|
||||
/* The value configured on the project. Null if not set. */
|
||||
@Nullable public String configuredValue;
|
||||
|
||||
/* The value configured globally. */
|
||||
public String inheritedValue;
|
||||
/* The value configured globally. Null if not set. */
|
||||
@Nullable public String inheritedValue;
|
||||
}
|
||||
|
||||
public static class ConfigParameterInfo {
|
||||
|
Loading…
Reference in New Issue
Block a user