Remove stray debugger statement

Change-Id: Ie7c37e658d6d6bc15d5d7c24b2f5cd13945c5243
This commit is contained in:
Trevor Parscal 2012-06-11 00:33:13 -07:00
parent bf643ded6a
commit c40dd953ca

View file

@ -160,9 +160,6 @@ ve.ce.TextNode.prototype.getHtml = function() {
for ( var hash in annotations ) {
annotation = annotations[hash];
if ( renderers[annotation.type] === undefined ) {
debugger;
}
out += typeof renderers[annotation.type].open === 'function' ?
renderers[annotation.type].open( annotation.data ) :
renderers[annotation.type].open;