Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Fayder Florez committed Mar 18, 2017
2 parents 51b93d6 + dab3f06 commit 7c50938
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions src/main/java/fayder/restcountries/v2/domain/Country.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,16 @@ public class Country extends BaseCountry {
private List<Currency> currencies;
private List<Language> languages;
private Translations translations;
private String flag;

public List<Currency> getCurrencies() {
return currencies;
}

public void setCurrencies(List<Currency> currencies) {
this.currencies = currencies;
}

public List<Language> getLanguages() {
return languages;
}

public void setLanguages(List<Language> languages) {
this.languages = languages;
}

@Override
@JsonIgnore
public String getRelevance() {
Expand All @@ -45,4 +38,8 @@ public String getSubregion() {
public Translations getTranslations() {
return translations;
}

public String getFlag() {
return flag;
}
}

0 comments on commit 7c50938

Please sign in to comment.