From: <mic...@us...> - 2007-05-08 16:54:30
|
Revision: 107 http://svn.sourceforge.net/pearcolator/?rev=107&view=rev Author: michael_baer Date: 2007-05-08 09:54:30 -0700 (Tue, 08 May 2007) Log Message: ----------- Reverted unintentionally commited change in main Modified Paths: -------------- src/org/binarytranslator/Main.java Modified: src/org/binarytranslator/Main.java =================================================================== --- src/org/binarytranslator/Main.java 2007-05-08 16:38:23 UTC (rev 106) +++ src/org/binarytranslator/Main.java 2007-05-08 16:54:30 UTC (rev 107) @@ -98,14 +98,15 @@ //Create an execution controller and pass execution on to it ExecutionController controller; - /*if (DBT_Options.gdbStub) { + if (DBT_Options.gdbStub) { controller = new GdbController(DBT_Options.gdbStubPort, ps); } else { controller = new DynamicTranslationController(ps); - }*/ + } - controller = new InterpreterController(ps); + + //controller = new InterpreterController(ps); controller.run(); System.out.println("\nProgram has finished."); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |