Skip to content

Commit

Permalink
Removed parenthesis ')' causing compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamStelmaszczyk committed Apr 20, 2015
1 parent a8d775f commit c4f9508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -70,7 +70,7 @@ public class StripeExample {
cardMap.put("exp_year", 2020);
chargeMap.put("card", cardMap);
try {
Charge charge = Charge.create(chargeMap, requestOptions));
Charge charge = Charge.create(chargeMap, requestOptions);
System.out.println(charge);
} catch (StripeException e) {
e.printStackTrace();
Expand Down

0 comments on commit c4f9508

Please sign in to comment.