Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
org.jclouds.googlecomputeengine.domain.Warning: Add nullable annotation to code and data attributes
  • Loading branch information
fviale committed Dec 20, 2024
1 parent d3a261b commit c13fc9f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
@AutoValue
public abstract class Warning {

public abstract String code();
@Nullable public abstract String code();
@Nullable public abstract String message();
public abstract List<KeyValuePair> data();
@Nullable public abstract List<KeyValuePair> data();

@SerializedNames({"code", "message", "data"})
public static Warning create(String code, String message, List<KeyValuePair> data){
Expand Down

0 comments on commit c13fc9f

Please sign in to comment.