summaryrefslogtreecommitdiff
path: root/RTJava/examples/tank/Refiller.java
diff options
context:
space:
mode:
Diffstat (limited to 'RTJava/examples/tank/Refiller.java')
-rw-r--r--RTJava/examples/tank/Refiller.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/RTJava/examples/tank/Refiller.java b/RTJava/examples/tank/Refiller.java
deleted file mode 100644
index 1ceea495854..00000000000
--- a/RTJava/examples/tank/Refiller.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package tank;
-
-/**
- * This class represent an activity that refills periodically
- * the bucket. In this application it is assumed that this activity
- * should be carried periodically.
- */
-public class Refiller implements java.lang.Runnable {
-
- /**
- * Constructs a refiller that refills the tank every
- * given amount of time.
- *
- * @param period The period of time at which the refill should
- * occur.
- */
- public Refiller(int period) {
- this.period = period;
- }
-
- public Refiller(int period) {
- this.period = period;
- }
-
- protected long period;
-}