add support for openjdk=$JDK8_HOME

All tests pass for the process=compile build.  Next step: process=interpret.
This commit is contained in:
Joel Dice
2015-08-06 13:24:06 -06:00
parent 2465459079
commit 8a7944d25c
12 changed files with 247 additions and 139 deletions

View File

@ -58,18 +58,6 @@ public class Method<T> extends AccessibleObject implements Member {
private String getSpec() {
return getSpec(vmMethod);
}
public String toString() {
StringBuilder sb = new StringBuilder();
if (vmMethod.class_ != null) {
sb.append(Classes.makeString(vmMethod.class_.name, 0,
vmMethod.class_.name.length - 1));
sb.append(".");
}
sb.append(getName());
sb.append(getSpec());
return sb.toString();
}
public static String getSpec(VMMethod vmMethod) {
return Classes.makeString(vmMethod.spec, 0, vmMethod.spec.length - 1);