You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/08/19 22:28:41 UTC

svn commit: r1515590 - /commons/proper/jci/trunk/compilers/jsr199/src/main/java/org/apache/commons/jci/compilers/Jsr199JavaCompiler.java

Author: sebb
Date: Mon Aug 19 20:28:41 2013
New Revision: 1515590

URL: http://svn.apache.org/r1515590
Log:
Explicit unboxing

Modified:
    commons/proper/jci/trunk/compilers/jsr199/src/main/java/org/apache/commons/jci/compilers/Jsr199JavaCompiler.java

Modified: commons/proper/jci/trunk/compilers/jsr199/src/main/java/org/apache/commons/jci/compilers/Jsr199JavaCompiler.java
URL: http://svn.apache.org/viewvc/commons/proper/jci/trunk/compilers/jsr199/src/main/java/org/apache/commons/jci/compilers/Jsr199JavaCompiler.java?rev=1515590&r1=1515589&r2=1515590&view=diff
==============================================================================
--- commons/proper/jci/trunk/compilers/jsr199/src/main/java/org/apache/commons/jci/compilers/Jsr199JavaCompiler.java (original)
+++ commons/proper/jci/trunk/compilers/jsr199/src/main/java/org/apache/commons/jci/compilers/Jsr199JavaCompiler.java Mon Aug 19 20:28:41 2013
@@ -221,7 +221,7 @@ public final class Jsr199JavaCompiler ex
 
         CompilationTask task = compiler.getTask(null, fileManager, diagnostics, null, null, units);
 
-        if (task.call()) {
+        if (task.call().booleanValue()) {
             log.debug("compiled");
         }