summaryrefslogtreecommitdiff
path: root/source/tanya/async/watcher.d
diff options
context:
space:
mode:
Diffstat (limited to 'source/tanya/async/watcher.d')
-rw-r--r--source/tanya/async/watcher.d13
1 files changed, 0 insertions, 13 deletions
diff --git a/source/tanya/async/watcher.d b/source/tanya/async/watcher.d
index 9ecb300..b257b5b 100644
--- a/source/tanya/async/watcher.d
+++ b/source/tanya/async/watcher.d
@@ -37,19 +37,6 @@ abstract class Watcher
void invoke() @nogc;
}
-version (unittest)
-{
- final class DummyWatcher : Watcher
- {
- bool invoked;
-
- override void invoke() @nogc
- {
- this.invoked = true;
- }
- }
-}
-
/**
* Socket watcher.
*/