Skip to content

Commit

Permalink
#4 Add ImageContentProvider
Browse files Browse the repository at this point in the history
Long --> long
  • Loading branch information
Nya Elimu committed Apr 6, 2020
1 parent ee2395a commit 4f2af50
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class StoryBook extends Content {
private String description;

@NonNull
private Long coverImageId;
private long coverImageId;

public String getTitle() {
return title;
Expand All @@ -33,11 +33,11 @@ public void setDescription(String description) {
this.description = description;
}

public Long getCoverImageId() {
public long getCoverImageId() {
return coverImageId;
}

public void setCoverImageId(Long coverImageId) {
public void setCoverImageId(long coverImageId) {
this.coverImageId = coverImageId;
}
}

0 comments on commit 4f2af50

Please sign in to comment.