forked from External/mage
Extracted Session interface, moved implementation to SessionImpl
This commit is contained in:
parent
0970856fc8
commit
96cfb51686
11 changed files with 1265 additions and 1035 deletions
|
|
@ -38,6 +38,7 @@ import mage.interfaces.MageClient;
|
|||
import mage.interfaces.callback.ClientCallback;
|
||||
import mage.remote.Connection;
|
||||
import mage.remote.Session;
|
||||
import mage.remote.SessionImpl;
|
||||
import mage.utils.MageVersion;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
|
|
@ -79,7 +80,7 @@ public class ConsoleFrame extends javax.swing.JFrame implements MageClient {
|
|||
initComponents();
|
||||
try {
|
||||
UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
|
||||
session = new Session(this);
|
||||
session = new SessionImpl(this);
|
||||
connectDialog = new ConnectDialog();
|
||||
} catch (Exception ex) {
|
||||
logger.fatal("", ex);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue