We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b2a55e commit 8fc3514Copy full SHA for 8fc3514
1 file changed
src/main/java/com/sendgrid/SendGrid.java
@@ -20,9 +20,6 @@ public class SendGrid implements SendGridAPI {
20
21
private ExecutorService pool;
22
23
- /** The user's API key. */
24
- private String apiKey;
25
-
26
/** The Twilio SendGrid host to which to connect. */
27
private String host;
28
@@ -78,7 +75,6 @@ public SendGrid(String apiKey, Client client) {
78
75
* @param apiKey the user's API key.
79
76
*/
80
77
public void initializeSendGrid(String apiKey) {
81
- this.apiKey = apiKey;
82
this.host = "api.sendgrid.com";
83
this.version = "v3";
84
this.requestHeaders = new HashMap<String, String>();
0 commit comments