Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
unclebob committed Dec 30, 2014
1 parent b4ca85e commit 6667ec0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 78 deletions.
5 changes: 1 addition & 4 deletions src/smc/SMC.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,7 @@ private CodeGenerator createGenerator(String generatorClassName,
} catch (NoSuchMethodException e) {
System.out.printf("Appropriate constructor for %s not found", generatorClassName);
System.exit(0);
} catch (InvocationTargetException e) {
e.printStackTrace();
System.exit(0);
} catch (InstantiationException e) {
} catch (InvocationTargetException | InstantiationException e) {
e.printStackTrace();
System.exit(0);
} catch (IllegalAccessException e) {
Expand Down
74 changes: 0 additions & 74 deletions test_cases/java_turnstile/src/TwoCoinTurnstile.java

This file was deleted.

0 comments on commit 6667ec0

Please sign in to comment.