From 7d59862c2bfeb5fa0699d8c65715be9930ef6b4b Mon Sep 17 00:00:00 2001 From: Hans-Albert Maritz Date: Sun, 15 Feb 2015 17:29:28 +1100 Subject: [PATCH] Removed unused function --- src/dlangide/tools/d/DCDInterface.d | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/dlangide/tools/d/DCDInterface.d b/src/dlangide/tools/d/DCDInterface.d index 441a927..cfc0c2a 100644 --- a/src/dlangide/tools/d/DCDInterface.d +++ b/src/dlangide/tools/d/DCDInterface.d @@ -125,17 +125,4 @@ class DCDInterface { } return result; } - - bool execute(char[][] arguments ,ref dstring output, dstring input) { - //TODO: Working Directory, where is that? - //TODO: Inform user when dcd-client is not available. - dcdProcess.run("dcd-client".dup, arguments, "/usr/bin".dup, stdoutTarget); - dcdProcess.write(input); - - while(dcdProcess.poll() == ExternalProcessState.Running){ } - - output = stdoutTarget.readText(); - return true; - } - } \ No newline at end of file