File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/main/java/com/cloudbees/jenkins/plugins Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,9 @@ triggers{
84
84
85
85
** Changelog**
86
86
87
+ #### TBD ####
88
+ - JENKINS-69490 - fixed NPE when using pipeline-syntax properties: Set job properties
89
+
87
90
#### 237.vc424f493c5f6 (10. Dec 2023)
88
91
- JENKINS-72448 - Updated jenkins.version from 2.375.3 to 2.414.1
89
92
Original file line number Diff line number Diff line change @@ -45,7 +45,9 @@ public FormValidation doCheckOverrideUrl(@QueryParameter String value) throws IO
45
45
46
46
@ Override
47
47
public boolean isApplicable (Item item ) {
48
- LOGGER .finest (item .getClass ().getSimpleName ());
48
+ if ( item != null ){
49
+ LOGGER .finest (item .getClass ().getSimpleName ());
50
+ }
49
51
return item instanceof WorkflowMultiBranchProject ;
50
52
}
51
53
You can’t perform that action at this time.
0 commit comments