Simplify FoodFactory#generateFoodLocation

This commit is contained in:
Kai S. K. Engelbart 2020-07-01 14:33:23 +02:00
parent 9131d0e2fd
commit 7ca0a14ea2
No known key found for this signature in database
GPG Key ID: 0A48559CA32CB48F
1 changed files with 1 additions and 2 deletions

View File

@ -119,8 +119,7 @@ public class FoodFactory {
public Point generateFoodLocation(int width, int height) {
assert (width > 100 && height > 100);
Random r = new Random();
pFood = new Point(r.nextInt(width - 100) + 50, r.nextInt(height - 100) + 50);
return pFood;
return pFood = new Point(r.nextInt(width - 100) + 50, r.nextInt(height - 100) + 50);
}
/**