@@ -32,7 +32,7 @@ public UserInformation getUserInfo(UsersApi usersApi, String accountId, String a
3232 java .util .List <String > remaining = headers .get ("X-RateLimit-Remaining" );
3333 java .util .List <String > reset = headers .get ("X-RateLimit-Reset" );
3434
35- if (remaining != null & reset != null ) {
35+ if (remaining != null && reset != null ) {
3636 Instant resetInstant = Instant .ofEpochSecond (Long .parseLong (reset .get (0 )));
3737 System .out .println ("API calls remaining: " + remaining );
3838 System .out .println ("Next Reset: " + resetInstant );
@@ -69,7 +69,7 @@ public NewUsersSummary createAgent(
6969 java .util .List <String > remaining = headers .get ("X-RateLimit-Remaining" );
7070 java .util .List <String > reset = headers .get ("X-RateLimit-Reset" );
7171
72- if (remaining != null & reset != null ) {
72+ if (remaining != null && reset != null ) {
7373 Instant resetInstant = Instant .ofEpochSecond (Long .parseLong (reset .get (0 )));
7474 System .out .println ("API calls remaining: " + remaining );
7575 System .out .println ("Next Reset: " + resetInstant );
@@ -90,7 +90,7 @@ public void activateAgent(
9090 java .util .List <String > remaining = headers .get ("X-RateLimit-Remaining" );
9191 java .util .List <String > reset = headers .get ("X-RateLimit-Reset" );
9292
93- if (remaining != null & reset != null ) {
93+ if (remaining != null && reset != null ) {
9494 Instant resetInstant = Instant .ofEpochSecond (Long .parseLong (reset .get (0 )));
9595 System .out .println ("API calls remaining: " + remaining );
9696 System .out .println ("Next Reset: " + resetInstant );
@@ -113,7 +113,7 @@ public void activateAgent(
113113 remaining = headers .get ("X-RateLimit-Remaining" );
114114 reset = headers .get ("X-RateLimit-Reset" );
115115
116- if (remaining != null & reset != null ) {
116+ if (remaining != null && reset != null ) {
117117 Instant resetInstant = Instant .ofEpochSecond (Long .parseLong (reset .get (0 )));
118118 System .out .println ("API calls remaining: " + remaining );
119119 System .out .println ("Next Reset: " + resetInstant );
@@ -135,7 +135,7 @@ public EnvelopesInformation getEnvelopeInfo(
135135 java .util .List <String > remaining = headers .get ("X-RateLimit-Remaining" );
136136 java .util .List <String > reset = headers .get ("X-RateLimit-Reset" );
137137
138- if (remaining != null & reset != null ) {
138+ if (remaining != null && reset != null ) {
139139 Instant resetInstant = Instant .ofEpochSecond (Long .parseLong (reset .get (0 )));
140140 System .out .println ("API calls remaining: " + remaining );
141141 System .out .println ("Next Reset: " + resetInstant );
0 commit comments