Skip to content

Commit

Permalink
Minor formatting refactor. (bunq#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
OGKevin committed Jun 22, 2018
1 parent be155d7 commit c416a86
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/main/java/com/bunq/sdk/model/core/UserContextHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@
import java.util.List;

public class UserContextHelper extends BunqModel {

/**
* Error constants.
*/
private static final String ERROR_NO_ACTIVE_MONETARY_ACCOUNT_BANK =
"No active monetary account found.";
"No active monetary account found.";

/**
* Endpoint constants.
Expand Down Expand Up @@ -56,7 +57,9 @@ public MonetaryAccountBank getFirstActiveMonetaryAccountBankByUserId(Integer use
);
String wrapper = MonetaryAccountBank.class.getSimpleName();
BunqResponse<List<MonetaryAccountBank>> response = fromJsonList(
MonetaryAccountBank.class, responseRaw, wrapper
MonetaryAccountBank.class,
responseRaw,
wrapper
);

for (MonetaryAccountBank monetaryAccountBank : response.getValue()) {
Expand Down

0 comments on commit c416a86

Please sign in to comment.