Skip to content

Commit e659083

Browse files
committed
Fixed jshint error.
1 parent 853d770 commit e659083

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

src/geom/Rectangle.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -410,39 +410,30 @@ Phaser.Rectangle.prototype = {
410410
default:
411411
case Phaser.TOP_LEFT:
412412
return out.set(this.x, this.y);
413-
break;
414413

415414
case Phaser.TOP_CENTER:
416415
return out.set(this.centerX, this.y);
417-
break;
418416

419417
case Phaser.TOP_RIGHT:
420418
return out.set(this.right, this.y);
421-
break;
422419

423420
case Phaser.MIDDLE_LEFT:
424421
return out.set(this.x, this.centerY);
425-
break;
426422

427423
case Phaser.MIDDLE_CENTER:
428424
return out.set(this.centerX, this.centerY);
429-
break;
430425

431426
case Phaser.MIDDLE_RIGHT:
432427
return out.set(this.right, this.centerY);
433-
break;
434428

435429
case Phaser.BOTTOM_LEFT:
436430
return out.set(this.x, this.bottom);
437-
break;
438431

439432
case Phaser.BOTTOM_CENTER:
440433
return out.set(this.centerX, this.bottom);
441-
break;
442434

443435
case Phaser.BOTTOM_RIGHT:
444436
return out.set(this.right, this.bottom);
445-
break;
446437
}
447438

448439
},

0 commit comments

Comments
 (0)