@@ -38,8 +38,6 @@ public void testToken() {
3838 public void testStaticContext () throws Exception {
3939 Intercom .setToken ("t1" );
4040 assertEquals ("t1" , Intercom .getToken ());
41- Intercom .setAppID ("app1" );
42- assertEquals ("app1" , Intercom .getAppID ());
4341 Intercom .setConnectionTimeout (98765 );
4442 assertEquals (98765 , Intercom .getConnectionTimeout ());
4543 Intercom .setRequestTimeout (12345 );
@@ -125,7 +123,6 @@ class ThreadTester implements Runnable {
125123 @ Override
126124 public void run () {
127125 token = Intercom .getToken ();
128- appId = Intercom .getAppID ();
129126 connectionTimeout = Intercom .getConnectionTimeout ();
130127 requestTimeout = Intercom .getRequestTimeout ();
131128 requestUsingCaches = Intercom .isRequestUsingCaches ();
@@ -147,7 +144,6 @@ void waitUntilComplete() throws InterruptedException {
147144 class ThreadLocalTester1 extends ThreadTester {
148145 final Random rnd = new Random ();
149146 final String localToken = "tx" ;
150- final String localAppId = "appx" ;
151147 final int localConnectionTimeout = rnd .nextInt ();
152148 final int localRequestTimeout = rnd .nextInt ();
153149 final boolean localRequestUsingCaches = rnd .nextBoolean ();
@@ -156,7 +152,6 @@ class ThreadLocalTester1 extends ThreadTester {
156152 public void run () {
157153 Intercom .clearThreadLocalContext ();
158154 Intercom .setToken (localToken );
159- Intercom .setAppID (localAppId );
160155 Intercom .setConnectionTimeout (localConnectionTimeout );
161156 Intercom .setRequestTimeout (localRequestTimeout );
162157 Intercom .setRequestUsingCaches (localRequestUsingCaches );
@@ -176,7 +171,6 @@ class ThreadLocalTester2 extends ThreadTester {
176171 public void run () {
177172 Intercom .clearThreadLocalContext ();
178173 Intercom .setToken (localToken );
179- Intercom .setAppID (localAppId );
180174 Intercom .setConnectionTimeout (localConnectionTimeout );
181175 Intercom .setRequestTimeout (localRequestTimeout );
182176 Intercom .setRequestUsingCaches (localRequestUsingCaches );
0 commit comments