We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f5cb75 commit d1e9545Copy full SHA for d1e9545
src/main/java/org/csanchez/jenkins/plugins/kubernetes/PodTemplate.java
@@ -85,7 +85,7 @@ protected static MessageDigest getLabelDigestFunction() {
85
86
private String id;
87
88
- private boolean unwrapped;
+ private transient boolean unwrapped;
89
90
private String inheritFrom;
91
@@ -926,11 +926,11 @@ public void setShowRawYaml(boolean showRawYaml) {
926
this.showRawYaml = Boolean.valueOf(showRawYaml);
927
}
928
929
- public void setUnwrapped(boolean unwrapped) {
+ void setUnwrapped(boolean unwrapped) {
930
this.unwrapped = unwrapped;
931
932
933
- public boolean isUnwrapped() {
+ boolean isUnwrapped() {
934
return unwrapped;
935
936
0 commit comments