Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…214)

org.jclouds.googlecomputeengine.domain.Warning: Add nullable annotation to code and data attributes
  • Loading branch information
fviale authored Dec 21, 2024
1 parent d3a261b commit 4f2f8a8
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 4f2f8a8

Please sign in to comment.