Skip to content

Commit e7bf4d1

Browse files
Eric SchrockEric Schrock
authored andcommitted
V1PatchAdapter should be declared static
1 parent 8fe11f1 commit e7bf4d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • kubernetes/src/main/java/io/kubernetes/client/custom

kubernetes/src/main/java/io/kubernetes/client/custom/V1Patch.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public String getValue() {
2626
return value;
2727
}
2828

29-
public class V1PatchAdapter extends TypeAdapter<V1Patch> {
29+
public static class V1PatchAdapter extends TypeAdapter<V1Patch> {
3030
@Override
3131
public void write(JsonWriter jsonWriter, V1Patch patch) throws IOException {
3232
jsonWriter.jsonValue(patch.getValue());

0 commit comments

Comments
 (0)