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{
8484
8585** Changelog**
8686
87+ #### TBD ####
88+ - JENKINS-69490 - fixed NPE when using pipeline-syntax properties: Set job properties
89+
8790#### 237.vc424f493c5f6 (10. Dec 2023)
8891- JENKINS-72448 - Updated jenkins.version from 2.375.3 to 2.414.1
8992
Original file line number Diff line number Diff line change @@ -45,7 +45,9 @@ public FormValidation doCheckOverrideUrl(@QueryParameter String value) throws IO
4545
4646 @ Override
4747 public boolean isApplicable (Item item ) {
48- LOGGER .finest (item .getClass ().getSimpleName ());
48+ if ( item != null ){
49+ LOGGER .finest (item .getClass ().getSimpleName ());
50+ }
4951 return item instanceof WorkflowMultiBranchProject ;
5052 }
5153
You can’t perform that action at this time.
0 commit comments