Skip to content

Commit

Permalink
Fix checkstyle in compute mailjet
Browse files Browse the repository at this point in the history
  • Loading branch information
Shun Fan committed May 11, 2016
1 parent 9496342 commit e6ac091
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
public class MailjetSender{

public static void main(String[] args) {
final String MAILJET_API_KEY = "YOUR-MAILJET-API-KEY";
final String MAILJET_SECRET_KEY = "YOUR-MAILJET-SECRET-KEY";
MailjetClient client = new MailjetClient(MAILJET_API_KEY, MAILJET_SECRET_KEY);
final String mailjetApiKey = "YOUR-MAILJET-API-KEY";
final String mailjetSecretKey = "YOUR-MAILJET-SECRET-KEY";
MailjetClient client = new MailjetClient(mailjetApiKey, mailjetSecretKey);

MailjetSender sender = new MailjetSender();
sender.sendMailjet(args[0], args[1], client);
Expand Down

0 comments on commit e6ac091

Please sign in to comment.