From 5645ac13f8296147b87993fc8faab45c93e29970 Mon Sep 17 00:00:00 2001 From: Val Erastov Date: Wed, 25 Feb 2015 21:29:24 -0800 Subject: [PATCH] fix parametric warning --- web/app/sketcher/parametric.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/sketcher/parametric.js b/web/app/sketcher/parametric.js index 805e6073..2f22d899 100644 --- a/web/app/sketcher/parametric.js +++ b/web/app/sketcher/parametric.js @@ -59,7 +59,7 @@ TCAD.TWO.ParametricManager.prototype._add = function(constr) { TCAD.TWO.ParametricManager.prototype.checkRedundancy = function (subSystem, constr) { var solver = this.prepareForSubSystem([], subSystem); if (TCAD.parametric.diagnose(solver.system).conflict) { - alert("Most likely this "+constr.NAME + "." + constr.id +" constraint is CONFLICTING!") + alert("Most likely this "+constr.NAME + " constraint is CONFLICTING!") } };