File tree Expand file tree Collapse file tree 2 files changed +2
-21
lines changed
library/src/main/java/com/loopj/android/http Expand file tree Collapse file tree 2 files changed +2
-21
lines changed Original file line number Diff line number Diff line change 13
13
- Added BlackholeHttpResponseHandler implementation, which discards all response contents and silents all various log messages (see #416 )
14
14
- Added LogInterface, it's default implementation and interface option to disable/enable logging library-wide and set logging verbosity
15
15
- Added option to TAG RequestHandle and cancel all requests matching specified TAG through ` AsyncHttpClient.cancelRequestsByTAG(Object TAG) `
16
+ - Removed deprecated ` getTimeout() ` replaced by ` getConnectTimeout() ` and ` getResponseTimeout() ` respectively
17
+ - Removed deprecated ` clearBasicAuth() ` replaced by ` clearCredentialsProvider() `
16
18
17
19
## 1.4.7 (released 9. 5. 2015)
18
20
Original file line number Diff line number Diff line change @@ -533,17 +533,6 @@ public void setMaxConnections(int maxConnections) {
533
533
ConnManagerParams .setMaxConnectionsPerRoute (httpParams , new ConnPerRouteBean (this .maxConnections ));
534
534
}
535
535
536
- /**
537
- * Returns current socket timeout limit (milliseconds). By default, this is
538
- * set to 10 seconds.
539
- *
540
- * @return Socket Timeout limit in milliseconds
541
- * @deprecated Use either {@link #getConnectTimeout()} or {@link #getResponseTimeout()}
542
- */
543
- public int getTimeout () {
544
- return connectTimeout ;
545
- }
546
-
547
536
/**
548
537
* Set both the connection and socket timeouts. By default, both are set to
549
538
* 10 seconds.
@@ -751,16 +740,6 @@ public void setAuthenticationPreemptive(boolean isPreemptive) {
751
740
}
752
741
}
753
742
754
- /**
755
- * Removes previously set basic auth credentials
756
- *
757
- * @deprecated
758
- */
759
- @ Deprecated
760
- public void clearBasicAuth () {
761
- clearCredentialsProvider ();
762
- }
763
-
764
743
/**
765
744
* Removes previously set auth credentials
766
745
*/
You can’t perform that action at this time.
0 commit comments