chore: cleanup old console.logs

This commit is contained in:
max_richter 2021-03-16 16:15:16 +01:00
parent 433a17848e
commit 7090117d8f
2 changed files with 0 additions and 4 deletions

View File

@ -36,8 +36,6 @@
let isFound = false;
const checkIfNew = (commitId) => {
console.log(commitId, currentCommit);
if (isFound) return false;
if (commitId === currentCommit) {

View File

@ -111,8 +111,6 @@ const createFloodFillMap = ({ pixels, x, y, width, height }: { pixels: Uint8Clam
// This is the distance to the pixel that is furthest away from xy
const maxDistance = distance2D((x < (width / 2)) ? width : 0, (y < (height / 2)) ? height : 0, x, y);
console.log(maxDistance)
// This the distance to the color that is furthest away from _R_G_B;
let maxColorDistance = 0;