package bcelifier; public class MethodCall { void methode(){ } void methode2(Runnable r){ methode(); r.run(); } }