diff graal/com.oracle.truffle.ruby.runtime/src/com/oracle/truffle/ruby/runtime/configuration/Configuration.java @ 13645:497fada09efb

Ruby: remove versioning.
author Chris Seaton <chris.seaton@oracle.com>
date Wed, 15 Jan 2014 19:27:27 +0000
parents 0fbee3eb71f0
children 50c11b9a7fdf
line wrap: on
line diff
--- a/graal/com.oracle.truffle.ruby.runtime/src/com/oracle/truffle/ruby/runtime/configuration/Configuration.java	Wed Jan 15 15:11:47 2014 +0100
+++ b/graal/com.oracle.truffle.ruby.runtime/src/com/oracle/truffle/ruby/runtime/configuration/Configuration.java	Wed Jan 15 19:27:27 2014 +0000
@@ -20,8 +20,6 @@
 
     private final String standardLibrary;
 
-    private final RubyVersion rubyVersion;
-
     private final boolean verbose;
     private final int warningLevel;
     private final int taintCheckLevel;
@@ -48,8 +46,6 @@
 
         standardLibrary = builder.getStandardLibrary();
 
-        rubyVersion = builder.getRubyVersion();
-
         verbose = builder.getVerbose();
         warningLevel = builder.getWarningLevel();
         taintCheckLevel = builder.getTaintCheckLevel();
@@ -76,10 +72,6 @@
         return standardLibrary;
     }
 
-    public RubyVersion getRubyVersion() {
-        return rubyVersion;
-    }
-
     public boolean getDebug() {
         return debug;
     }