Skip to content

Commit

Permalink
fixed methodNames (one typo and camel case)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielseligmann committed Dec 18, 2018
1 parent 2ea4e94 commit d5bb8d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/main/java/me/figo/models/CatalogBank.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ public String getAdvice() {
return advice;
}

public String getBank_name() {
public String getBankName() {
return bank_name;
}

public String getBank_code() {
public String getBankCode() {
return bank_code;
}

Expand Down Expand Up @@ -95,7 +95,7 @@ public String getIconUrl() {
* @return the bank icon in other resolutions
*/
@SuppressWarnings("unchecked")
public Map<String, String> getAddtionalIcons() {
public Map<String, String> getAdditionalIcons() {
if(icon!=null&&icon.size()>1){
return (LinkedTreeMap<String, String>) icon.get(1);
}
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/me/figo/models/Language.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ public class Language {
@Expose
private String current_language;

public List<String> getAvailable_languages() {
public List<String> getAvailableLanguages() {
return available_languages;
}
public String getCurrent_language() {
public String getCurrentLanguage() {
return current_language;
}
}

0 comments on commit d5bb8d6

Please sign in to comment.