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 10
10
@ JsonAdapter (V1Patch .V1PatchAdapter .class )
11
11
public class V1Patch {
12
12
13
+ private String value ;
14
+
13
15
public static final String PATCH_FORMAT_JSON_PATCH = "application/json-patch+json" ;
14
16
public static final String PATCH_FORMAT_JSON_MERGE_PATCH = "application/merge-patch+json" ;
15
17
public static final String PATCH_FORMAT_STRATEGIC_MERGE_PATCH = "application/strategic-merge-patch+json" ;
@@ -18,7 +20,6 @@ public V1Patch(final String value) {
18
20
this .value = value ;
19
21
}
20
22
21
- private String value ;
22
23
23
24
public String getValue () {
24
25
return value ;
@@ -35,5 +36,4 @@ public V1Patch read(JsonReader jsonReader) throws IOException {
35
36
throw new UnsupportedOperationException ("deserializing patch data is not supported" );
36
37
}
37
38
}
38
-
39
39
}
You can’t perform that action at this time.
0 commit comments