Skip to content

Commit

Permalink
Merge pull request #494 from basil/remove-prototype
Browse files Browse the repository at this point in the history
Remove usages of Prototype
  • Loading branch information
rsandell committed Jul 18, 2023
2 parents 3e9dcc0 + ebbb0c7 commit 3e056ee
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -54,7 +54,7 @@
</developers>

<properties>
<jenkins.version>2.361.4</jenkins.version>
<jenkins.version>2.410</jenkins.version>
<revision>2.39.2</revision>
<changelist>-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
Expand Down Expand Up @@ -252,8 +252,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.361.x</artifactId>
<version>2081.v85885a_d2e5c5</version>
<artifactId>bom-2.401.x</artifactId>
<version>2244.vd60654536b_96</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Expand Up @@ -463,8 +463,8 @@
<p:blockWrapperTd>
<f:textbox name="from"
value="${h.appendIfNotNull(t.from.hourAsString,'','00')}:${h.appendIfNotNull(t.from.minuteAsString,'','00')}"
checkUrl="'${rootURL}/${serverURL}/validTimeCheck?fromValue='+escape(Form.findMatchingInput(this,'from').value)
+'&amp;toValue='+escape(Form.findMatchingInput(this, 'to').value)"/>
checkUrl="'${rootURL}/${serverURL}/validTimeCheck?fromValue='+escape(findMatchingFormInput(this,'from').value)
+'&amp;toValue='+escape(findMatchingFormInput(this, 'to').value)"/>
</p:blockWrapperTd>
</p:blockWrapperTr>
<p:blockWrapperTr>
Expand All @@ -474,8 +474,8 @@
<p:blockWrapperTd>
<f:textbox name="to"
value="${h.appendIfNotNull(t.to.hourAsString,'','00')}:${h.appendIfNotNull(t.to.minuteAsString,'','01')}"
checkUrl="'${rootURL}/${serverURL}/validTimeCheck?fromValue='+escape(Form.findMatchingInput(this,'from').value)
+'&amp;toValue='+escape(Form.findMatchingInput(this, 'to').value)"/>
checkUrl="'${rootURL}/${serverURL}/validTimeCheck?fromValue='+escape(findMatchingFormInput(this,'from').value)
+'&amp;toValue='+escape(findMatchingFormInput(this, 'to').value)"/>
</p:blockWrapperTd>
</p:blockWrapperTr>
<!--used to display the form validation error -->
Expand Down

0 comments on commit 3e056ee

Please sign in to comment.