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/VSProtocol.java | |
| parent | 5b50abee94e410586ae92f81e41e4afd5a6fc71c (diff) | |
VSMessage constructor does not requier the protocol's classname anymore.
Diffstat (limited to 'sources/protocols/VSProtocol.java')
| -rw-r--r-- | sources/protocols/VSProtocol.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/protocols/VSProtocol.java b/sources/protocols/VSProtocol.java index 9f6f335..348f194 100644 --- a/sources/protocols/VSProtocol.java +++ b/sources/protocols/VSProtocol.java @@ -34,7 +34,7 @@ abstract public class VSProtocol extends VSEvent { process.increaseLamportTime(); process.increaseVectorTime(); - message.init(process); + message.init(process, getClassname()); process.sendMessage(message); } |
