changeset 21260:0777c3a7800d

Allow access to GraalCompilerTest.Result fields
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Wed, 06 May 2015 11:44:07 -0700
parents bbaa8ee85da8
children 8bae587f0efe
files graal/com.oracle.graal.compiler.test/src/com/oracle/graal/compiler/test/GraalCompilerTest.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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;