Skip to content

Commit

Permalink
Remove EpisodeSimple from RecommendationToSave
Browse files Browse the repository at this point in the history
  • Loading branch information
adalinmik committed Jan 23, 2024
1 parent 76e7828 commit 7ea8039
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ public class RecommendationData {

private String image;

private String episodeRef;

private Date date;

private Date created;
Expand Down Expand Up @@ -71,14 +69,6 @@ public void setDescription(String description) {
this.description = description;
}

public String getEpisodeRef() {
return episodeRef;
}

public void setEpisodeRef(String episodeRef) {
this.episodeRef = episodeRef;
}

public Date getDate() {
return date;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package hu.tilos.radio.backend.recommendation;

import hu.tilos.radio.backend.data.Author;
import hu.tilos.radio.backend.episode.EpisodeSimple;

import javax.validation.constraints.NotNull;
import java.util.Date;
Expand All @@ -15,7 +14,6 @@ public class RecommendationToSave {
private String description;
private String link;
private String image;
private EpisodeSimple episode;
private Date date;
private String writer;

Expand Down Expand Up @@ -45,14 +43,6 @@ public void setDescription(String description) {
this.description = description;
}

public EpisodeSimple getEpisode() {
return episode;
}

public void setEpisode(EpisodeSimple episode) {
this.episode = episode;
}

public Date getDate() {
return date;
}
Expand Down

0 comments on commit 7ea8039

Please sign in to comment.