Skip to content

Commit

Permalink
Add javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
w3stling committed Sep 1, 2023
1 parent a3db04a commit db917ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/apptasticsoftware/rssreader/Enclosure.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public String getUrl() {

/**
* Set the URL of the enclosure.
* @param url
* @param url URL
*/
public void setUrl(String url) {
this.url = url;
Expand All @@ -60,7 +60,7 @@ public String getType() {

/**
* Set the type of the enclosure.
* @param type
* @param type type
*/
public void setType(String type) {
this.type = type;
Expand All @@ -76,7 +76,7 @@ public Optional<Long> getLength() {

/**
* Set the length of the enclosure.
* @param length
* @param length length
*/
public void setLength(Long length) {
this.length = length;
Expand Down

0 comments on commit db917ae

Please sign in to comment.