summaryrefslogtreecommitdiff
path: root/sources/protocols/VSAbstractProtocol.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-28 22:11:57 +0000
committerPaul Buetow <paul@buetow.org>2008-05-28 22:11:57 +0000
commitca09c67e85acb0ab6c85c87f0dd0c05b35262b12 (patch)
treeada90495be58a1b508f9cc30c722735b58cb776d /sources/protocols/VSAbstractProtocol.java
parent4d5a90f7191b6c175863d0375e9d1e17b2df39d4 (diff)
alle event classnames now have a VS prefix.
Diffstat (limited to 'sources/protocols/VSAbstractProtocol.java')
-rw-r--r--sources/protocols/VSAbstractProtocol.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/protocols/VSAbstractProtocol.java b/sources/protocols/VSAbstractProtocol.java
index 461fe01..1cb5281 100644
--- a/sources/protocols/VSAbstractProtocol.java
+++ b/sources/protocols/VSAbstractProtocol.java
@@ -218,7 +218,7 @@ abstract public class VSAbstractProtocol extends VSAbstractEvent {
* @param time The process' local time to run the schedule at.
*/
public final void scheduleAt(long time) {
- VSAbstractEvent scheduleEvent = new ProtocolScheduleEvent(this, currentContextIsServer);
+ VSAbstractEvent scheduleEvent = new VSProtocolScheduleEvent(this, currentContextIsServer);
VSTask scheduleTask = new VSTask(time, process, scheduleEvent, VSTask.LOCAL);
if (currentContextIsServer)
serverSchedules.add(scheduleTask);