# HG changeset patch # User Christian Humer # Date 1372703490 -7200 # Node ID 47233c73ca580bea87347e0345eec6d33793e172 # Parent 72e6b178de161886da21e2cca016d4b1a416d696 Truffle-DSL: API change: Renamed createNodeSpecialized to createNodeGeneric. There was not a known use-case for createNodeSpecialized so we decided to replace it with a simpler version. diff -r 72e6b178de16 -r 47233c73ca58 graal/com.oracle.truffle.api.codegen/src/com/oracle/truffle/api/codegen/NodeFactory.java --- a/graal/com.oracle.truffle.api.codegen/src/com/oracle/truffle/api/codegen/NodeFactory.java Mon Jul 01 20:29:08 2013 +0200 +++ b/graal/com.oracle.truffle.api.codegen/src/com/oracle/truffle/api/codegen/NodeFactory.java Mon Jul 01 20:31:30 2013 +0200 @@ -44,14 +44,13 @@ T createNode(Object... arguments); /** - * Instantiates a new specialized variant of the node. This is an optional method and throws an + * Instantiates a new generic variant of the node. This is an optional method and throws an * {@link UnsupportedOperationException} if not supported. * * @param thisNode the current node - * @param specializionClasses * @return the specialized node */ - T createNodeSpecialized(T thisNode, Class... specializionClasses); + T createNodeGeneric(T thisNode); /** * Returns the node class that will get created by {@link #createNode(Object...)}. The node