Skip to content

Commit

Permalink
Fix the JavaDoc links
Browse files Browse the repository at this point in the history
  • Loading branch information
amusarra committed Apr 15, 2024
1 parent e9a0477 commit 5b7c764
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
/**
* JAX-RS Application class that defines the base URI for the RESTful web services.
*
* <p>https://jakarta.ee/specifications/restful-ws/3.1/jakarta-restful-ws-spec-3.1.html#application
* <p>
* <a href="https://jakarta.ee/specifications/restful-ws/3.1/jakarta-restful-ws-spec-3.1.html#application">JAX-RS Application</a>
*
* @author Antonio Musarra
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
* <p>L'elenco delle URI da filtrare è definito nel parametro di configurazione
* {@code app.filter.uris}.
*
* <p>Per ulteriori informazioni sui filtri JAX-RS, vedere la specifica Jakarta EE: https://jakarta.ee/specifications/restful-ws/3.1/jakarta-restful-ws-spec-3.1.html#filters
* <p>Per ulteriori informazioni sui filtri JAX-RS, vedere la specifica Jakarta EE: <a href="https://jakarta.ee/specifications/restful-ws/3.1/jakarta-restful-ws-spec-3.1.html#filters">JAX-RS Filter</a>
*
* @author Antonio Musarra
*/
Expand Down Expand Up @@ -193,7 +193,7 @@ private Map<String, String> getResponseHeaders(ContainerResponseContext response
StringBuilder valueBuilder = new StringBuilder();
for (Object value : values) {
if (value != null) {
if (valueBuilder.length() > 0) {
if (!valueBuilder.isEmpty()) {
valueBuilder.append(", ");
}
valueBuilder.append(value);
Expand Down

0 comments on commit 5b7c764

Please sign in to comment.