Skip to content

Commit

Permalink
fix: removed unnecessary private modifier in enum constructor in Buil…
Browse files Browse the repository at this point in the history
…dRecreateMode (3301)

Signed-off-by: Harsh Khandelwal <[email protected]>
  • Loading branch information
Switchharsh authored Aug 5, 2024
1 parent 7aaf5c0 commit 0a46918
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public static BuildRecreateMode fromParameter(String param) {
return valueOf(param.toLowerCase());
}

private BuildRecreateMode(boolean bc, boolean is) {
BuildRecreateMode(boolean bc, boolean is) {
this.isBuildConfig = bc;
this.isImageStream = is;
}
Expand Down

0 comments on commit 0a46918

Please sign in to comment.