comparison agent/src/share/classes/sun/jvm/hotspot/jdi/MethodImpl.java @ 2471:37be97a58393

7010849: 5/5 Extraneous javac source/target options when building sa-jdi Summary: Make code changes necessary to get rid of the '-source 1.4 -target 1.4' options. Reviewed-by: dholmes, dcubed
author andrew
date Fri, 01 Apr 2011 15:15:37 -0700
parents c18cbe5936b8
children
comparison
equal deleted inserted replaced
2470:b025bffd6c2c 2471:37be97a58393
1 /* 1 /*
2 * Copyright (c) 2002, 2005, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
198 return false; 198 return false;
199 } 199 }
200 } 200 }
201 201
202 // From interface Comparable 202 // From interface Comparable
203 public int compareTo(Object object) { 203 public int compareTo(Method method) {
204 Method method = (Method)object;
205 ReferenceTypeImpl declaringType = (ReferenceTypeImpl)declaringType(); 204 ReferenceTypeImpl declaringType = (ReferenceTypeImpl)declaringType();
206 int rc = declaringType.compareTo(method.declaringType()); 205 int rc = declaringType.compareTo(method.declaringType());
207 if (rc == 0) { 206 if (rc == 0) {
208 rc = declaringType.indexOf(this) - 207 rc = declaringType.indexOf(this) -
209 declaringType.indexOf(method); 208 declaringType.indexOf(method);