Skip to content

Commit

Permalink
Merge branch '4.4.x' into 4.5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
sdelamo committed Nov 4, 2024
2 parents 5e05e8f + 4d8efaa commit ad6a805
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

findbugs = "3.0.2"

micronaut-serde = "2.11.0"
micronaut-validation = "4.7.0"
micronaut-logging = "1.4.0"
micronaut-serde = "2.12.0"
micronaut-validation = "4.8.0"
micronaut-logging = "1.5.0"
micronaut-docs = "2.0.0"
micronaut = "4.6.6"
micronaut = "4.7.1"
micronaut-test = "4.5.0"
groovy = "4.0.20"
spock = "2.3-groovy-4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ protected void writeRssItemDescription(XMLStreamWriter sw, RssItem rssItem) {
/**
*
* @param description RSS Item description
* @return Whether description should be wrapped with <![CDATA[ ]]
* @return Whether description should be wrapped with {@code <![CDATA[ ]]}
*/
protected boolean shouldWrapDescriptionWithCData(@NonNull String description) {
return description.contains(LOWER_THAN);
Expand Down
2 changes: 1 addition & 1 deletion rss-core/src/main/java/io/micronaut/rss/RssChannel.java
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public Optional<ZonedDateTime> getLastBuildDate() {
}

/**
* Specify one or more categories that the channel belongs to. Follows the same rules as the <item>-level category element. More info.
* Specify one or more categories that the channel belongs to. Follows the same rules as the {@code <item>}-level category element. More info.
* @return Specify one or more categories that the channel belongs to.
*/
public Optional<List<List<String>>> getCategory() {
Expand Down
2 changes: 1 addition & 1 deletion rss-core/src/main/java/io/micronaut/rss/RssSkipDays.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* RSS SkipDays element.
* @see <a href="https://cyber.harvard.edu/rss/skipHoursDays.html#skipdays">RSS SkipDays</a>
*
* An XML element that contains up to seven <day> sub-elements whose value is . Aggregators may not read the channel during days listed in the skipDays element.
* An XML element that contains up to seven {@code <day>} sub-elements whose value is . Aggregators may not read the channel during days listed in the skipDays element.
*
* @author Sergio del Amo
* @since 1.0
Expand Down
2 changes: 1 addition & 1 deletion rss-core/src/main/java/io/micronaut/rss/RssSkipHours.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/**
* @see <a href="https://cyber.harvard.edu/rss/skipHoursDays.html#skiphours">RSS skipHours</a>
*
* An XML element that contains up to 24 <hour> sub-elements whose value is a number between 0 and 23, representing a time in GMT, when aggregators, if they support the feature, may not read the channel on hours listed in the skipHours element.
* An XML element that contains up to 24 {@code<hour>} sub-elements whose value is a number between 0 and 23, representing a time in GMT, when aggregators, if they support the feature, may not read the channel on hours listed in the skipHours element.
*
* The hour beginning at midnight is hour zero.
*
Expand Down

0 comments on commit ad6a805

Please sign in to comment.