Skip to content

Commit 801b112

Browse files
author
Carlos Diaz-Padron
committed
Merge pull request #85 adamzr/master
Conflicts: src/main/java/com/twilio/sdk/TwilioUtils.java
2 parents f268b64 + 75e836c commit 801b112

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/main/java/com/twilio/sdk/TwilioUtils.java

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
/*
5-
Copyright (c) 2008 Twilio, Inc.
5+
Copyright (c) 2013 Twilio, Inc.
66
77
Permission is hereby granted, free of charge, to any person
88
obtaining a copy of this software and associated documentation
@@ -42,11 +42,14 @@
4242
public class TwilioUtils {
4343

4444
protected String authToken;
45-
protected String accountSid;
46-
47-
public TwilioUtils(String authToken, String accountSid){
45+
46+
public TwilioUtils(String authToken){
4847
this.authToken = authToken;
49-
this.accountSid = accountSid;
48+
}
49+
50+
@Deprecated
51+
public TwilioUtils(String authToken, String accountSid){
52+
this.authToken = authToken;
5053
}
5154

5255
public boolean validateRequest(String expectedSignature, String url, Map<String,String> params) {

0 commit comments

Comments
 (0)