Skip to content

Commit

Permalink
Remove deprecated getThumb method
Browse files Browse the repository at this point in the history
  • Loading branch information
aNNiMON committed Feb 17, 2024
1 parent c245c16 commit a1b9635
Showing 1 changed file with 0 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,4 @@ public interface ThumbMethod<M extends Method, T extends Serializable> extends M
InputFile getThumbnail();

M setThumbnail(InputFile thumb);


/**
* @deprecated Use {@link #getThumbnail()}
*/
@Deprecated
default InputFile getThumb() {
return getThumbnail();
}

/**
* @deprecated Use {@link #setThumbnail(InputFile)}
*/
@Deprecated
default M setThumb(InputFile thumb) {
return setThumbnail(thumb);
}
}

0 comments on commit a1b9635

Please sign in to comment.