diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-17 20:36:00 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-17 20:36:00 +0000 |
| commit | dbb780b7295c0df60269ee6f3c85c3056d6262b8 (patch) | |
| tree | d8f084283d6b5b86482e7edb3d7fc786de737ceb /sources/protocols | |
| parent | a622ebff377f37d14535f91e484335e2ad215acb (diff) | |
VSEvent interface has now has the init method.
Diffstat (limited to 'sources/protocols')
| -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 7154c78..761c427 100644 --- a/sources/protocols/VSProtocol.java +++ b/sources/protocols/VSProtocol.java @@ -41,7 +41,7 @@ abstract public class VSProtocol extends VSPrefs implements VSEvent { protected void sendMessage(VSMessage message) { process.increaseLamportTime(); process.increaseVectorTime(); - message.setSendingProcess(process); + message.init(process); process.sendMessage(message); } |
