File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed
src/java/org/tensorics/core/tree/domain Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change 2424import java .io .Serializable ;
2525import java .util .Collections ;
2626import java .util .List ;
27- import java .util .Objects ;
28-
29- import org .tensorics .core .commons .util .Named ;
3027
3128/**
3229 * An expression that needs no further processing. It contains already its own result, which can be simply retrieved by
3532 * @author kfuchsbe
3633 * @param <R> the type of the resulting value of the expression
3734 */
38- public final class ResolvedExpression <R > implements Expression <R >, Named , Serializable {
35+ public final class ResolvedExpression <R > implements Expression <R >, Serializable {
3936 private static final long serialVersionUID = 1L ;
4037
4138 private final R value ;
@@ -68,11 +65,6 @@ public String toString() {
6865 return "ResolvedExpression [value=" + value + "]" ;
6966 }
7067
71- @ Override
72- public String name () {
73- return Objects .toString (value );
74- }
75-
7668 @ Override
7769 public int hashCode () {
7870 final int prime = 31 ;
You can’t perform that action at this time.
0 commit comments