summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2012-09-21 18:37:25 (GMT)
committerKevin Smith <git@kismith.co.uk>2012-09-21 18:37:25 (GMT)
commit816655ed98893382b82569ccbbebdb04c4af9127 (patch)
tree10274e693352516e36837b7bdbc88d979ee54f61 /src/com/isode/stroke/examples/gui
parent88c4b4ac3e8609049d6ccd6de9f57d5eaef67558 (diff)
downloadstroke-816655ed98893382b82569ccbbebdb04c4af9127.zip
stroke-816655ed98893382b82569ccbbebdb04c4af9127.tar.bz2
Update some interfaces for consistency with Swiften.
Makes ClientOptions do more.
Diffstat (limited to 'src/com/isode/stroke/examples/gui')
-rw-r--r--src/com/isode/stroke/examples/gui/StrokeGUI.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/isode/stroke/examples/gui/StrokeGUI.java b/src/com/isode/stroke/examples/gui/StrokeGUI.java
index e8580fc..282fde6 100644
--- a/src/com/isode/stroke/examples/gui/StrokeGUI.java
+++ b/src/com/isode/stroke/examples/gui/StrokeGUI.java
@@ -157,7 +157,7 @@ public class StrokeGUI extends javax.swing.JFrame {
}
};
- client_ = new CoreClient(eventLoop, JID.fromString(loginJID_.getText()), loginPassword_.getText(), new JavaNetworkFactories(eventLoop));
+ client_ = new CoreClient(JID.fromString(loginJID_.getText()), loginPassword_.getText(), new JavaNetworkFactories(eventLoop));
System.out.println("Connecting");
try {
client_.connect(new ClientOptions());