diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-26 18:53:39 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-26 18:53:39 +0000 |
| commit | 96001873c9ffb6b3ff8866937eb39b8085032705 (patch) | |
| tree | 2324a48e8087e481c48a566e5613a1b22e1227f1 /sources/protocols/implementations/DummyProtocol.java | |
| parent | 5b50abee94e410586ae92f81e41e4afd5a6fc71c (diff) | |
VSMessage constructor does not requier the protocol's classname anymore.
Diffstat (limited to 'sources/protocols/implementations/DummyProtocol.java')
| -rw-r--r-- | sources/protocols/implementations/DummyProtocol.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/protocols/implementations/DummyProtocol.java b/sources/protocols/implementations/DummyProtocol.java index 1b3d3e5..1a409da 100644 --- a/sources/protocols/implementations/DummyProtocol.java +++ b/sources/protocols/implementations/DummyProtocol.java @@ -40,7 +40,7 @@ public class DummyProtocol extends VSProtocol { protected void onClientStart() { logg("onClientStart()"); - VSMessage message = new VSMessage(getClassname()); + VSMessage message = new VSMessage(); message.setString("Greeting", "Hello World!"); message.setInteger("A number", 1); message.setBoolean("A boolean", true); |
