Simon Hunt
Committed by Gerrit Code Review

Remove unnecessary parentheses (but keep some for clarity).

Change-Id: If2072c3a207ba791210cb71a9c595f6027c2ff0c
......@@ -202,7 +202,7 @@
var s = lnk.fromSource,
t = lnk.fromTarget,
both = lnk.source.online && lnk.target.online;
return both && ((s && s.online) && (t && t.online));
return both && (s && s.online) && (t && t.online);
},
linkWidth: function () {
var s = lnk.fromSource,
......