< prev index next >

src/java.desktop/share/classes/sun/awt/geom/AreaOp.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1998, 2003, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1998, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 212,222 **** Edge e; int left = 0; int right = 0; int cur = 0; int next = 0; ! double yrange[] = new double[2]; Vector<CurveLink> subcurves = new Vector<>(); Vector<ChainEnd> chains = new Vector<>(); Vector<CurveLink> links = new Vector<>(); // Active edges are between left (inclusive) and right (exclusive) while (left < numedges) { --- 212,222 ---- Edge e; int left = 0; int right = 0; int cur = 0; int next = 0; ! double[] yrange = new double[2]; Vector<CurveLink> subcurves = new Vector<>(); Vector<ChainEnd> chains = new Vector<>(); Vector<CurveLink> links = new Vector<>(); // Active edges are between left (inclusive) and right (exclusive) while (left < numedges) {
< prev index next >