Skip to content

Commit 0a1c03e

Browse files
committed
fix: javadoc issue
updated javadoc plugin
1 parent 42e0f5f commit 0a1c03e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@
261261
<plugin>
262262
<groupId>org.apache.maven.plugins</groupId>
263263
<artifactId>maven-javadoc-plugin</artifactId>
264-
<version>2.9.1</version>
264+
<version>3.4.1</version>
265265
<executions>
266266
<execution>
267267
<id>attach-javadocs</id>

src/main/java/io/github/isagroup/PricingContext.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public Boolean userAffectedByPricing() {
101101
* the user
102102
* from the configuration.
103103
*
104-
* @return List of strings with the current user's contracted add-ons. Add-on names
104+
* @return {@code List<String>} with the current user's contracted add-ons. Add-on names
105105
* should be the same as in the pricing configuration file.
106106
*
107107
*/
@@ -114,7 +114,7 @@ public Boolean userAffectedByPricing() {
114114
* Key "plan" contains the plan name of the user.
115115
* Key "addOns" contains a list with the add-ons contracted by the user.
116116
*
117-
* @return Map<String, Object> with the current user's contracted subscription.
117+
* @return {@code Map<String, Object>} with the current user's contracted subscription.
118118
*/
119119
public final Map<String, Object> getUserSubscription() {
120120
Map<String, Object> userSubscription = new HashMap<>();

0 commit comments

Comments
 (0)