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

Commit

Permalink
Fix code styling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
alopresti committed May 4, 2018
1 parent 2961d71 commit 1e66c84
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion app/src/main/java/com/kamron/pogoiv/GoIVSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,9 @@ public boolean isPokeSpamEnabled() {
return prefs.getBoolean(POKESPAM_ENABLED, false);
}

public boolean isMovesetEnabled() { return prefs.getBoolean(MOVESET_ENABLED, true); }
public boolean isMovesetEnabled() {
return prefs.getBoolean(MOVESET_ENABLED, true);
}

public boolean shouldAutoOpenExpandedAppraise() {
return prefs.getBoolean(AUTO_OPEN_APPRAISE_DIALOGUE, false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ private void setResultScreenPercentageRange() {
}

/**
* showMovesetInfoBasedOnSettings
* showMovesetInfoBasedOnSettings.
* Shows moveset button based on setting
*/
private void showMovesetInfoBasedOnSettings() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public void populateAdvancedInformation() {
}

/**
* showMovesetInfoBasedOnSettings
* showMovesetInfoBasedOnSettings.
* Shows moveset button based on setting
*/
private void showMovesetInfoBasedOnSettings() {
Expand Down

0 comments on commit 1e66c84

Please sign in to comment.