Skip to content

Commit f118ec5

Browse files
authored
removing an extra console.log
While working on an example that saves a large JSON file, I noticed an extra console.log probably from earlier debugging.
1 parent 67e2e79 commit f118ec5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/io/files.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1249,7 +1249,6 @@ p5.prototype.saveJSON = function (json, filename, opt) {
12491249
} else {
12501250
stringify = JSON.stringify(json, undefined, 2);
12511251
}
1252-
console.log(stringify);
12531252
this.saveStrings(stringify.split('\n'), filename, 'json');
12541253
};
12551254

0 commit comments

Comments
 (0)