Explicit boxing git-svn-id: https://svn.apache.org/repos/asf/commons/proper/dbutils/branches/2_0@1482107 13f79535-47bb-0310-9956-ffa450edef68
Project: http://git-wip-us.apache.org/repos/asf/commons-dbutils/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-dbutils/commit/144fad9f Tree: http://git-wip-us.apache.org/repos/asf/commons-dbutils/tree/144fad9f Diff: http://git-wip-us.apache.org/repos/asf/commons-dbutils/diff/144fad9f Branch: refs/heads/2_0 Commit: 144fad9f2995c064843b6e780e62bfab79923450 Parents: d25102b Author: Sebastian Bazley <[email protected]> Authored: Mon May 13 21:05:08 2013 +0000 Committer: Sebastian Bazley <[email protected]> Committed: Mon May 13 21:05:08 2013 +0000 ---------------------------------------------------------------------- src/main/java/org/apache/commons/dbutils2/AsyncExecutor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-dbutils/blob/144fad9f/src/main/java/org/apache/commons/dbutils2/AsyncExecutor.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/dbutils2/AsyncExecutor.java b/src/main/java/org/apache/commons/dbutils2/AsyncExecutor.java index d1ff22b..8fe2f1c 100644 --- a/src/main/java/org/apache/commons/dbutils2/AsyncExecutor.java +++ b/src/main/java/org/apache/commons/dbutils2/AsyncExecutor.java @@ -89,7 +89,7 @@ public class AsyncExecutor { @Override public Integer call() throws Exception { - return executor.execute(); + return Integer.valueOf(executor.execute()); } }); @@ -127,7 +127,7 @@ public class AsyncExecutor { @Override public Integer call() throws Exception { - return executor.execute(); + return Integer.valueOf(executor.execute()); } });
