Skip to content

Commit

Permalink
Fix SWTRipperMain
Browse files Browse the repository at this point in the history
  • Loading branch information
gabegorelick committed Apr 6, 2011
1 parent 69d97e2 commit 2a90afc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 0 additions & 2 deletions src/edu/umd/cs/guitar/ripper/SWTRipper.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@
import edu.umd.cs.guitar.model.data.ObjectFactory;
import edu.umd.cs.guitar.model.wrapper.AttributesTypeWrapper;
import edu.umd.cs.guitar.model.wrapper.ComponentTypeWrapper;
import edu.umd.cs.guitar.ripper.GRipperMonitor;
import edu.umd.cs.guitar.ripper.Ripper;
import edu.umd.cs.guitar.util.DefaultFactory;
import edu.umd.cs.guitar.util.GUITARLog;

Expand Down
7 changes: 3 additions & 4 deletions src/edu/umd/cs/guitar/ripper/SWTRipperMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,12 @@ public class SWTRipperMain {
public static void main(String[] args) {
SWTRipperConfiguration configuration = new SWTRipperConfiguration();
CmdLineParser parser = new CmdLineParser(configuration);
final SWTRipper swtRipper = new SWTRipper(configuration, Thread.currentThread());

SWTRipperRunner runner = new SWTRipperRunner(swtRipper);

try {
// parser.setUsageWidth(Integer.MAX_VALUE);
parser.parseArgument(args);

SWTRipper swtRipper = new SWTRipper(configuration, Thread.currentThread());
SWTRipperRunner runner = new SWTRipperRunner(swtRipper);
runner.start();
} catch (CmdLineException e) {
System.err.println(e.getMessage());
Expand Down

0 comments on commit 2a90afc

Please sign in to comment.