summaryrefslogtreecommitdiff
path: root/sources/core/time
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-17 15:03:25 +0000
committerPaul Buetow <paul@buetow.org>2008-05-17 15:03:25 +0000
commitab22e4430cc3dc752ad8980fdfabb44e1acda8e8 (patch)
treec0c469cc49fa19c5a0295759caafe78152d5cf72 /sources/core/time
parent77a150f8d20f56aff7a4b4d394ea4b4857b6918c (diff)
core.time package complete.
Diffstat (limited to 'sources/core/time')
-rw-r--r--sources/core/time/VSLamportTime.java2
-rw-r--r--sources/core/time/VSTime.java2
-rw-r--r--sources/core/time/VSVectorTime.java2
3 files changed, 3 insertions, 3 deletions
diff --git a/sources/core/time/VSLamportTime.java b/sources/core/time/VSLamportTime.java
index 2d2c49e..704b3d5 100644
--- a/sources/core/time/VSLamportTime.java
+++ b/sources/core/time/VSLamportTime.java
@@ -1,4 +1,4 @@
-package core;
+package core.time;
public class VSLamportTime implements VSTime {
private long globalTime;
diff --git a/sources/core/time/VSTime.java b/sources/core/time/VSTime.java
index f35c0dd..efeda52 100644
--- a/sources/core/time/VSTime.java
+++ b/sources/core/time/VSTime.java
@@ -1,4 +1,4 @@
-package core;
+package core.time;
public interface VSTime {
public long getGlobalTime();
diff --git a/sources/core/time/VSVectorTime.java b/sources/core/time/VSVectorTime.java
index 70a62a2..55a9b49 100644
--- a/sources/core/time/VSVectorTime.java
+++ b/sources/core/time/VSVectorTime.java
@@ -1,4 +1,4 @@
-package core;
+package core.time;
import java.util.ArrayList;