changeset 6658:cc3fa26e7de7

made all constructors public to be consistent
author Doug Simon <doug.simon@oracle.com>
date Thu, 01 Nov 2012 17:30:04 +0100
parents 768793150bcd
children eb980b869753
files graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/CompilationResult.java
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/CompilationResult.java	Wed Oct 31 18:21:19 2012 +0100
+++ b/graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/CompilationResult.java	Thu Nov 01 17:30:04 2012 +0100
@@ -57,7 +57,7 @@
         private static final long serialVersionUID = 2479806696381720162L;
         public final DebugInfo debugInfo;
 
-        Safepoint(int pcOffset, DebugInfo debugInfo) {
+        public Safepoint(int pcOffset, DebugInfo debugInfo) {
             super(pcOffset);
             this.debugInfo = debugInfo;
         }
@@ -105,7 +105,7 @@
          */
         public final boolean direct;
 
-        Call(Object target, int pcOffset, int size, boolean direct, DebugInfo debugInfo) {
+        public Call(Object target, int pcOffset, int size, boolean direct, DebugInfo debugInfo) {
             super(pcOffset, debugInfo);
             this.size = size;
             this.target = target;
@@ -300,7 +300,7 @@
         public final Object id;
         public final Mark[] references;
 
-        Mark(int pcOffset, Object id, Mark[] references) {
+        public Mark(int pcOffset, Object id, Mark[] references) {
             super(pcOffset);
             this.id = id;
             this.references = references;