# HG changeset patch # User Tom Rodriguez # Date 1430937847 25200 # Node ID 0777c3a7800df53f401ee6e7145c2c5d868944f8 # Parent bbaa8ee85da8128292d602a28ed5a927769c0f72 Allow access to GraalCompilerTest.Result fields diff -r bbaa8ee85da8 -r 0777c3a7800d graal/com.oracle.graal.compiler.test/src/com/oracle/graal/compiler/test/GraalCompilerTest.java --- a/graal/com.oracle.graal.compiler.test/src/com/oracle/graal/compiler/test/GraalCompilerTest.java Mon May 04 23:38:38 2015 -0700 +++ b/graal/com.oracle.graal.compiler.test/src/com/oracle/graal/compiler/test/GraalCompilerTest.java Wed May 06 11:44:07 2015 -0700 @@ -436,8 +436,8 @@ protected static class Result { - final Object returnValue; - final Throwable exception; + public final Object returnValue; + public final Throwable exception; public Result(Object returnValue, Throwable exception) { this.returnValue = returnValue;