Skip to content

Commit

Permalink
修复32位和64位反了的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
monkeyWie committed Feb 9, 2018
1 parent b4e06a1 commit 2a797b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class HttpDownBootstrapFactory {

public static AbstractHttpDownBootstrap create(HttpDownInfo httpDownInfo, int retryCount,
SslContext clientSslContext, NioEventLoopGroup clientLoopGroup, HttpDownCallback callback) {
if (!OsUtil.is64()) {
if (OsUtil.is64()) {
return new X64HttpDownBootstrap(httpDownInfo, retryCount, clientSslContext, clientLoopGroup,
callback);
} else {
Expand Down

0 comments on commit 2a797b5

Please sign in to comment.