Java - Encapsulation
Identify the issue in this Java class related to encapsulation:
class Product {
private double price;
public double getPrice() { return price; }
public void setPrice(double price) { price = price; }
}