--- old/modules/javafx.graphics/src/main/java/com/sun/marlin/stats/Histogram.java 2018-06-08 16:12:55.583686456 +0200 +++ new/modules/javafx.graphics/src/main/java/com/sun/marlin/stats/Histogram.java 2018-06-08 16:12:55.419686458 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -42,7 +42,6 @@ for (int i = 2; i < MAX; i++) { STEPS[i] = STEPS[i - 1] * BUCKET; } -// System.out.println("Histogram.STEPS = " + Arrays.toString(STEPS)); } static int bucket(int val) {