File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
kubernetes/src/main/java/io/kubernetes/client/custom Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1010@ JsonAdapter (V1Patch .V1PatchAdapter .class )
1111public class V1Patch {
1212
13+ private String value ;
14+
1315 public static final String PATCH_FORMAT_JSON_PATCH = "application/json-patch+json" ;
1416 public static final String PATCH_FORMAT_JSON_MERGE_PATCH = "application/merge-patch+json" ;
1517 public static final String PATCH_FORMAT_STRATEGIC_MERGE_PATCH = "application/strategic-merge-patch+json" ;
@@ -18,7 +20,6 @@ public V1Patch(final String value) {
1820 this .value = value ;
1921 }
2022
21- private String value ;
2223
2324 public String getValue () {
2425 return value ;
@@ -35,5 +36,4 @@ public V1Patch read(JsonReader jsonReader) throws IOException {
3536 throw new UnsupportedOperationException ("deserializing patch data is not supported" );
3637 }
3738 }
38-
3939}
You can’t perform that action at this time.
0 commit comments