view test/java/dyn/MethodHandlePrinter.java @ 41:75c08d56477b

Debug code
author Gary Benson <gbenson@redhat.com>
date Mon, 28 Mar 2011 14:43:32 +0100
parents
children 1abb32424461
line wrap: on
line source

package test.java.dyn;

import java.dyn.MethodHandle;

public class MethodHandlePrinter {
    static void print(MethodHandle mh) {
        System.out.println(mh);
    }
}