Remove console.logs from previous commit again

This commit is contained in:
Julian Viereck 2011-09-09 16:29:50 -07:00
parent e15bfc00a0
commit 6e9306afd2
3 changed files with 0 additions and 7 deletions

View File

@ -165,8 +165,6 @@ var FontLoader = {
waitingStr: [],
bind: function(fonts, callback) {
console.log("requesting fonts", fonts[0].properties.loadedName, fonts[0].name);
var rules = [], names = [];
for (var i = 0; i < fonts.length; i++) {

1
pdf.js
View File

@ -4893,7 +4893,6 @@ var CanvasGraphics = (function() {
// If the promise isn't resolved yet, add the continueCallback
// to the promise and bail out.
if (!promise.isResolved) {
console.log("depending on obj", depObjId);
promise.then(continueCallback);
return i;
}

View File

@ -93,8 +93,6 @@ var Promise = (function() {
Promise.prototype = {
resolve: function(data) {
console.log("resolve", this.name);
if (this.isResolved) {
throw "A Promise can be resolved only once";
}
@ -166,8 +164,6 @@ var WorkerPDFDoc = (function() {
var file = data[3];
var properties = data[4];
console.log("got new font", name);
var font = {
name: name,
file: file,