diff --git a/com.oracle.truffle.r.nodes/src/com/oracle/truffle/r/nodes/qirinterface/QIRInterface.java b/com.oracle.truffle.r.nodes/src/com/oracle/truffle/r/nodes/qirinterface/QIRInterface.java
index 9c02ae6c7fe88bef819b26ffca614c017f1fff59..f11bee2785ac4a5cfbfe534b514e2aef531b0fd1 100644
--- a/com.oracle.truffle.r.nodes/src/com/oracle/truffle/r/nodes/qirinterface/QIRInterface.java
+++ b/com.oracle.truffle.r.nodes/src/com/oracle/truffle/r/nodes/qirinterface/QIRInterface.java
@@ -229,7 +229,7 @@ public final class QIRInterface {
             final String dbName = (String) env.get("dbName");
             final String configFile = (String) env.get("configFile");
             if (tableName != null && dbName != null && configFile != null) // The object is a table
-                return new QIRTable<>(src, new QIRString(null, tableName), new QIRString(null, dbName), new QIRString(null, configFile), new QIRString(null, schemaName));
+                return new QIRTable(src, new QIRString(null, tableName), new QIRString(null, dbName), new QIRString(null, configFile), new QIRString(null, schemaName));
             // else, the object is considered a tuple
             QIRTuple tuple = QIRTnil.instance;
             for (final Object x : env.getFrame().getFrameDescriptor().getIdentifiers())
@@ -257,7 +257,7 @@ public final class QIRInterface {
                     final QIRVariable schemaName = new QIRVariable(null, "__tmp4__");
                     return new QIRLambda(null, null, tableName,
                                     new QIRLambda(null, null, dbName, new QIRLambda(null, null, configFile,
-                                                    new QIRLambda(null, null, schemaName, new QIRTable<>(src, tableName, dbName, configFile, schemaName),
+                                                    new QIRLambda(null, null, schemaName, new QIRTable(src, tableName, dbName, configFile, schemaName),
                                                                     new FrameDescriptor()),
                                                     new FrameDescriptor()),
                                                     new FrameDescriptor()),