次のコードで Eclipse から「リソース リーク: 'in' は決して閉じられません」というメッセージが表示されるのはなぜですか?
public void readShapeData() {
Scanner in = new Scanner(System.in);
System.out.println("Enter the width of the Rectangle: ");
width = in.nextDouble();
System.out.println("Enter the height of the Rectangle: ");
height = in.nextDouble();