Почему 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();
Scanner
и отключит предупреждение, но оно также закроется,System.in
что обычно нежелательно.