Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/main/java/com/sendgrid/SendGrid.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ public class SendGrid implements SendGridAPI {

private ExecutorService pool;

/** The user's API key. */
private String apiKey;

/** The Twilio SendGrid host to which to connect. */
private String host;

Expand Down Expand Up @@ -78,7 +75,6 @@ public SendGrid(String apiKey, Client client) {
* @param apiKey the user's API key.
*/
public void initializeSendGrid(String apiKey) {
this.apiKey = apiKey;
this.host = "api.sendgrid.com";
this.version = "v3";
this.requestHeaders = new HashMap<String, String>();
Expand Down