Skip to content

Commit

Permalink
Minor refactor.
Browse files Browse the repository at this point in the history
  • Loading branch information
johardi committed Jul 29, 2014
1 parent 106e35b commit 8e390b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/obidea/semantika/cli2/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ private void initialize(String config)
private void openConsole(IQueryEngine engine, IPrefixManager pm, String name) throws Exception
{
final TerminalFactory terminalFactory = new TerminalFactory();
Console console = createInteractiveConsole(engine, pm, name, terminalFactory.get());
Console console = createInteractiveConsole(name, engine, pm, terminalFactory.get());
console.run();
}

private Console createInteractiveConsole(IQueryEngine engine, IPrefixManager pm, String name,
private Console createInteractiveConsole(String name, IQueryEngine engine, IPrefixManager pm,
Terminal terminal) throws IOException
{
showBanner();
Expand Down

0 comments on commit 8e390b1

Please sign in to comment.