Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.

Commit 4f2f8a8

Browse files
authored
org.jclouds.googlecomputeengine.domain.Warning: Add nullable annotation to code and data attributes
1 parent d3a261b commit 4f2f8a8

File tree

1 file changed

+2
-2
lines changed
  • providers/google-compute-engine/src/main/java/org/jclouds/googlecomputeengine/domain

1 file changed

+2
-2
lines changed

providers/google-compute-engine/src/main/java/org/jclouds/googlecomputeengine/domain/Warning.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
@AutoValue
2727
public abstract class Warning {
2828

29-
public abstract String code();
29+
@Nullable public abstract String code();
3030
@Nullable public abstract String message();
31-
public abstract List<KeyValuePair> data();
31+
@Nullable public abstract List<KeyValuePair> data();
3232

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

0 commit comments

Comments
 (0)