Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/1.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
ao-apps committed Oct 6, 2023
2 parents b9e801a + 3c2b5c8 commit 4fddaaa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ along with pragmatickm-password-taglib. If not, see <https://www.gnu.org/licens
shortTitle="Changelog"
tocLevels="1"
datePublished="2017-07-25T20:56:44-05:00"
dateModified="2022-05-15T19:16:45-05:00"
dateModified="2023-10-06T05:56:05Z"
>
<c:set var="latestRelease" value="1.8.1" />
<c:if test="${
Expand All @@ -62,6 +62,7 @@ along with pragmatickm-password-taglib. If not, see <https://www.gnu.org/licens
</li>
</ol>
</li>
<li><code>ElementTag.evaluateAttributes(…)</code> no longer throws <code>IOException</code>.</li>
</ul>
</changelog:release>
</c:if>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ protected PasswordTable createElement() {
}

@Override
protected void evaluateAttributes(PasswordTable element, ELContext elContext) throws JspTagException, IOException {
protected void evaluateAttributes(PasswordTable element, ELContext elContext) throws JspTagException {
super.evaluateAttributes(element, elContext);
element.setHeader(resolveValue(header, String.class, elContext));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ protected Password createElement() {
}

@Override
protected void evaluateAttributes(Password pssword, ELContext elContext) throws JspTagException, IOException {
protected void evaluateAttributes(Password pssword, ELContext elContext) throws JspTagException {
super.evaluateAttributes(pssword, elContext);
pssword.setHref(resolveValue(href, String.class, elContext));
pssword.setUsername(resolveValue(username, String.class, elContext));
Expand Down

0 comments on commit 4fddaaa

Please sign in to comment.