001package votorola.s.line;
002
003
004/** Main class of the executable <code>vonop</code> - a command that does nothing.
005  */
006public final class VONop
007{
008
009    private VONop() {}
010
011
012
013    /** Runs this command from the command line.
014      *
015      *     @param argv the command line argument array.
016      */
017    public static void main( String[] argv )
018    {
019        // inserting test code here?  remove it before committing
020    }
021
022
023}