ClassWithFinalFinalizer.java revision 742:66b98808fdff
1241744Sgrehan/*
2241744Sgrehan * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
3241744Sgrehan * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4241744Sgrehan *
5241744Sgrehan * This code is free software; you can redistribute it and/or modify it
6241744Sgrehan * under the terms of the GNU General Public License version 2 only, as
7241744Sgrehan * published by the Free Software Foundation.  Oracle designates this
8241744Sgrehan * particular file as subject to the "Classpath" exception as provided
9241744Sgrehan * by Oracle in the LICENSE file that accompanied this code.
10241744Sgrehan *
11241744Sgrehan * This code is distributed in the hope that it will be useful, but WITHOUT
12241744Sgrehan * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13241744Sgrehan * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14241744Sgrehan * version 2 for more details (a copy is included in the LICENSE file that
15241744Sgrehan * accompanied this code).
16241744Sgrehan *
17241744Sgrehan * You should have received a copy of the GNU General Public License version
18241744Sgrehan * 2 along with this work; if not, write to the Free Software Foundation,
19241744Sgrehan * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20241744Sgrehan *
21241744Sgrehan * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22241744Sgrehan * or visit www.oracle.com if you need additional information or have any
23241744Sgrehan * questions.
24241744Sgrehan */
25241744Sgrehan
26241744Sgrehanpackage jdk.nashorn.test.models;
27241744Sgrehan
28241744Sgrehanpublic class ClassWithFinalFinalizer {
29241744Sgrehan    protected final void finalize() {
30241744Sgrehan    }
31241744Sgrehan}
32241744Sgrehan