Skip to content

Commit

Permalink
rename ForgeConsoleImpl into F1Console
Browse files Browse the repository at this point in the history
  • Loading branch information
koentsje committed May 30, 2014
1 parent 136d99c commit ec4dca4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ private void createConsoles() {
for (ForgeRuntime runtime : ForgeCorePreferences.INSTANCE.getRuntimes()) {
ForgeConsole console = null;
if (runtime.getVersion().startsWith("1.")) {
console = new org.jboss.tools.forge.ui.internal.console.f1.ForgeConsoleImpl(runtime);
console = new org.jboss.tools.forge.ui.internal.console.f1.F1Console(runtime);
} else {
console = new org.jboss.tools.forge.ui.internal.ext.console.ForgeConsoleImpl(runtime);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
import org.jboss.tools.forge.ui.internal.viewer.F1TextViewer;
import org.jboss.tools.forge.ui.internal.viewer.ForgeTextViewer;

public class ForgeConsoleImpl extends AbstractForgeConsole {
public class F1Console extends AbstractForgeConsole {

public ForgeConsoleImpl(ForgeRuntime runtime) {
public F1Console(ForgeRuntime runtime) {
super(runtime);
}

Expand Down

0 comments on commit ec4dca4

Please sign in to comment.