Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
smarek committed May 3, 2014
2 parents d474673 + 6fbd6ff commit 1bdde80
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ before_install:
- export PATH=$GRADLE_HOME/bin:$PATH
# just to test gradle version, against our provided one
- gradle -v
# newest android SDK 22.6.3
- wget http://dl.google.com/android/android-sdk_r22.6.3-linux.tgz
- tar -zxf android-sdk_r22.6.3-linux.tgz
# newest android SDK 22.6.2
- wget http://dl.google.com/android/android-sdk_r22.6.2-linux.tgz
- tar -zxf android-sdk_r22.6.2-linux.tgz
- export ANDROID_HOME=`pwd`/android-sdk-linux
- export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
# manually set sdk.dir variable, according to local paths
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@
import java.util.WeakHashMap;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.zip.GZIPInputStream;


Expand Down Expand Up @@ -331,10 +330,10 @@ public void setCookieStore(CookieStore cookieStore) {
* Overrides the threadpool implementation used when queuing/pooling requests. By default,
* Executors.newFixedThreadPool() is used.
*
* @param threadPool an instance of {@link ThreadPoolExecutor} to use for queuing/pooling
* @param threadPool an instance of {@link ExecutorService} to use for queuing/pooling
* requests.
*/
public void setThreadPool(ThreadPoolExecutor threadPool) {
public void setThreadPool(ExecutorService threadPool) {
this.threadPool = threadPool;
}

Expand Down

0 comments on commit 1bdde80

Please sign in to comment.