Skip to content

Commit

Permalink
getName() is not needed on ForgeConsole
Browse files Browse the repository at this point in the history
  • Loading branch information
koentsje committed Feb 6, 2014
1 parent 88a29e1 commit 49ab241
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@

public class ForgeConsoleImpl implements ForgeConsole {

@Override
public String getName() {
return "Forge Two";
}

@Override
public Control createControl(Composite parent) {
return new AeshTextViewer(parent).getControl();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

public interface ForgeConsole {

String getName();
Control createControl(Composite parent);
IAction[] createActions();
ForgeRuntime getRuntime();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ public ForgeConsoleImpl() {
getRuntime().addPropertyChangeListener(this);
}

@Override
public String getName() {
return "Forge One";
}

@Override
public Control createControl(Composite parent) {
if (forgeTextViewer == null) {
Expand Down

0 comments on commit 49ab241

Please sign in to comment.