Removed logs

This commit is contained in:
Richard Davey 2017-06-27 01:36:21 +01:00
parent 410ffc68c6
commit babe6e9daf
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
var CHECKSUM = {
build: '02a76170-5aaf-11e7-923b-5bf433948572'
build: '234a6e20-5acf-11e7-94ea-914d156f6e97'
};
module.exports = CHECKSUM;

View file

@ -86,7 +86,7 @@ var World = new Class({
// Check the body against the spatial hash
checkHash: function (body, hash, size)
{
console.log('checkHash');
// console.log('checkHash');
var checked = {};
var xmin = Math.floor(body.pos.x / size);
@ -142,7 +142,7 @@ var World = new Class({
if (bodyA.collides && bodyB.collides && bodyA.collides + bodyB.collides > COLLIDES.ACTIVE)
{
console.log('solve');
// console.log('solve');
Solver(this, bodyA, bodyB);
}
}