summaryrefslogtreecommitdiff
path: root/BCT/BytecodeTranslator/Sink.cs
diff options
context:
space:
mode:
Diffstat (limited to 'BCT/BytecodeTranslator/Sink.cs')
-rw-r--r--BCT/BytecodeTranslator/Sink.cs9
1 files changed, 0 insertions, 9 deletions
diff --git a/BCT/BytecodeTranslator/Sink.cs b/BCT/BytecodeTranslator/Sink.cs
index f81581c9..b5c01fc1 100644
--- a/BCT/BytecodeTranslator/Sink.cs
+++ b/BCT/BytecodeTranslator/Sink.cs
@@ -22,20 +22,11 @@ namespace BytecodeTranslator {
public class Sink {
- private TranslationPlugins.PhoneControlsPlugin phonePlugin;
-
public TraverserFactory Factory {
get { return this.factory; }
}
readonly TraverserFactory factory;
- public Sink(IContractAwareHost host, TraverserFactory factory, HeapFactory heapFactory, string phoneControlsConfigFile)
- : this(host, factory, heapFactory) {
- // TODO I'm loading the config file here, it would be best to create the sink and then register callback plugins from outside
-
- phonePlugin = new TranslationPlugins.PhoneControlsPlugin(phoneControlsConfigFile);
- }
-
public Sink(IContractAwareHost host, TraverserFactory factory, HeapFactory heapFactory) {
Contract.Requires(host != null);
Contract.Requires(factory != null);