Fix style nit from brendandahl

This commit is contained in:
Julian Viereck 2011-11-01 20:27:19 +01:00
parent 493c25dcaa
commit 80b759b093

View File

@ -545,7 +545,7 @@ var PDFDoc = (function pdfDoc() {
case 'JpegStream': case 'JpegStream':
var IR = data[2]; var IR = data[2];
new JpegImage(id, IR, this.objs); new JpegImage(id, IR, this.objs);
break; break;
case 'Font': case 'Font':
var name = data[2]; var name = data[2];
var file = data[3]; var file = data[3];
@ -575,7 +575,7 @@ var PDFDoc = (function pdfDoc() {
file: file, file: file,
properties: properties properties: properties
}); });
break; break;
default: default:
throw 'Got unkown object type ' + type; throw 'Got unkown object type ' + type;
} }