package traceprinter.shoelace;

import java.lang.reflect.*;

/***
This is just a basic class with a main method,
sent as the main class to com.sun.jdi.CommandLineLaunch.
Once main is entered, we use JDI to start doing what we really want.
 ***/

public class NoopMain {

    public static void main(String[] args) {
        // this is just a stub, but it's important
        // since we call it to get things going
    }

}