Skip to content

Commit

Permalink
Checkstyle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sfuhrm committed Jul 18, 2023
1 parent 9116465 commit 2e472e1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,17 @@ public final class AdvancedSearch extends ParameterProvider {
private Boolean nameExact;

/** Country of the station.
* @deprecated Do NOT use the "country" fields anymore! Use "countrycode" instead, which is standardized.
* @deprecated Do NOT use the "country" fields anymore!
* Use "countrycode" instead, which is standardized.
* @see #countryCode
* @see <a href="https://api.radio-browser.info/">api.radio-browser.info</a>
* */
@Deprecated
private String country;

/** True: only exact matches, otherwise all matches.
* @deprecated Do NOT use the "country" fields anymore! Use "countrycode" instead, which is standardized.
* @deprecated Do NOT use the "country" fields anymore!
* Use "countrycode" instead, which is standardized.
* @see #countryCode
* @see <a href="https://api.radio-browser.info/">api.radio-browser.info</a>
* */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,16 @@ public enum SearchMode {
/** Search by exact codec. */
BYCODECEXACT,
/** Search by country.
* @deprecated Do NOT use the "country" fields anymore! Use "countrycode" instead, which is standardized.
* @deprecated Do NOT use the "country" fields anymore!
* Use "countrycode" instead, which is standardized.
* @see <a href="https://api.radio-browser.info/">api.radio-browser.info</a>
* @see #BYCOUNTRYCODEEXACT
* */
@Deprecated
BYCOUNTRY,
/** Search by exact country.
* @deprecated Do NOT use the "country" fields anymore! Use "countrycode" instead, which is standardized.
* @deprecated Do NOT use the "country" fields anymore!
* Use "countrycode" instead, which is standardized.
* @see <a href="https://api.radio-browser.info/">api.radio-browser.info</a>
* @see #BYCOUNTRYCODEEXACT
* */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ public final class Station extends ParameterProvider {
private List<String> tagList = new ArrayList<>();

/** The country this station is located at.
* @deprecated Do NOT use the "country" fields anymore! Use "countrycode" instead, which is standardized.
* @deprecated Do NOT use the "country" fields anymore!
* Use "countrycode" instead, which is standardized.
* @see #countryCode
* @see <a href="https://api.radio-browser.info/">api.radio-browser.info</a>
* */
Expand Down

0 comments on commit 2e472e1

Please sign in to comment.