View | Details | Raw Unified | Return to bug 313247
Collapse All | Expand All

(-)src/org/eclipse/wst/jsdt/internal/compiler/ast/CompilationUnitDeclaration.java (-8 / +1 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2009 IBM Corporation and others.
2
 * Copyright (c) 2000, 2010 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 50-62 Link Here
50
	extends ASTNode
50
	extends ASTNode
51
	implements ProblemSeverities, ReferenceContext, IScriptFileDeclaration, IInferenceFile {
51
	implements ProblemSeverities, ReferenceContext, IScriptFileDeclaration, IInferenceFile {
52
52
53
	protected void finalize() throws Throwable {
54
//		System.out.println("finalize "+hashCode());
55
		super.finalize();
56
	}
57
58
59
60
	private static final Comparator STRING_LITERAL_COMPARATOR = new Comparator() {
53
	private static final Comparator STRING_LITERAL_COMPARATOR = new Comparator() {
61
		public int compare(Object o1, Object o2) {
54
		public int compare(Object o1, Object o2) {
62
			StringLiteral literal1 = (StringLiteral) o1;
55
			StringLiteral literal1 = (StringLiteral) o1;

Return to bug 313247