Remove unnecessary return statement.

This code can never be reached.
This commit is contained in:
Jürg Lehni 2012-09-30 14:05:34 -07:00
parent 5f6842656f
commit c3f051583c

View file

@ -189,7 +189,6 @@ var Numerical = new function() {
roots[0] = (A + B) - b;
return 1;
}
return 0;
}
};
};