Skip to content

Commit d1e9545

Browse files
Vlatombejglick
andauthored
Apply suggestions from code review
Co-authored-by: Jesse Glick <[email protected]>
1 parent 8f5cb75 commit d1e9545

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/csanchez/jenkins/plugins/kubernetes/PodTemplate.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ protected static MessageDigest getLabelDigestFunction() {
8585

8686
private String id;
8787

88-
private boolean unwrapped;
88+
private transient boolean unwrapped;
8989

9090
private String inheritFrom;
9191

@@ -926,11 +926,11 @@ public void setShowRawYaml(boolean showRawYaml) {
926926
this.showRawYaml = Boolean.valueOf(showRawYaml);
927927
}
928928

929-
public void setUnwrapped(boolean unwrapped) {
929+
void setUnwrapped(boolean unwrapped) {
930930
this.unwrapped = unwrapped;
931931
}
932932

933-
public boolean isUnwrapped() {
933+
boolean isUnwrapped() {
934934
return unwrapped;
935935
}
936936

0 commit comments

Comments
 (0)