Revision 10627 trunk/libraries/libGDBMS/src/main/java/com/hardcode/gdbms/engine/instruction/ProductExprAdapter.java

View differences:

ProductExprAdapter.java
34 34
	public Value evaluate(long row) throws EvaluationException {
35 35
		Value ret = null;
36 36

  
37
		Adapter[] expr = (Adapter[]) getChilds();
37
		Adapter[] expr = getChilds();
38 38

  
39 39
		if (expr.length > 0) {
40 40
			ret = ((Expression) expr[0]).evaluateExpression(row);
......
49 49
									row).inversa());
50 50
					}
51 51
                } catch (IncompatibleTypesException e) {
52
                    throw new EvaluationException(e);
52
                    throw new EvaluationException();
53 53
                }
54 54
			}
55 55
		}
......
87 87
			getParent().replaceChild(this, childs[0]);
88 88
		}
89 89
	}
90
	
90

  
91 91
	/**
92 92
	 * DOCUMENT ME!
93 93
	 *

Also available in: Unified diff