fix too long line

This commit is contained in:
Robert Muir 2016-06-11 15:04:49 -04:00
parent 592042601f
commit 65352face2
1 changed files with 3 additions and 1 deletions

View File

@ -177,7 +177,9 @@ public final class SSource extends AStatement {
function.method.method.getDescriptor(),
false);
clinit.push(handle);
clinit.putStatic(CLASS_TYPE, "handle$" + function.name + "$" + function.parameters.size(), Type.getType(MethodHandle.class));
clinit.putStatic(CLASS_TYPE,
"handle$" + function.name + "$" + function.parameters.size(),
Type.getType(MethodHandle.class));
}
clinit.returnValue();
clinit.endMethod();