add missing break

This commit is contained in:
s1341 2013-12-12 12:56:21 +02:00
parent e54d63dbcb
commit 88971c1462

View file

@ -139,8 +139,11 @@ $.Class("Revision2",
var e = edge[granularity];
path.push(e);
current = e.target_revision;
break;
};
};
//TODO: none of the granularities matched. WTF? This probably means that there is NO useful
//edge in the direction of traversal. Is this a termination condition?
};
return path;
}