summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/isode/stroke/network/JavaTLSConnectionFactory.java')
-rw-r--r--src/com/isode/stroke/network/JavaTLSConnectionFactory.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/com/isode/stroke/network/JavaTLSConnectionFactory.java b/src/com/isode/stroke/network/JavaTLSConnectionFactory.java
deleted file mode 100644
index 56ef917..0000000
--- a/src/com/isode/stroke/network/JavaTLSConnectionFactory.java
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Copyright (c) 2012, Isode Limited, London, England.
- * All rights reserved.
- */
-
-package com.isode.stroke.network;
-
-import com.isode.stroke.eventloop.EventLoop;
-
-public class JavaTLSConnectionFactory implements ConnectionFactory {
-
- public JavaTLSConnectionFactory(EventLoop eventLoop) {
- this.eventLoop = eventLoop;
- }
-
- public Connection createConnection() {
- return JavaConnection.create(eventLoop);
- }
-
- private final EventLoop eventLoop;
-}