From 1d39d3b61ed5bb447f8a44f83a119ab897b1f01d Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sun, 18 Aug 2024 01:19:52 +0200 Subject: [PATCH] Remove unused stdout-getter from Pixmap Recorder Wasn't even properly implemented anyway and would have returned `stderr` instead. --- pixmaprecorder.d | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pixmaprecorder.d b/pixmaprecorder.d index 99103d0..6df6043 100644 --- a/pixmaprecorder.d +++ b/pixmaprecorder.d @@ -84,20 +84,10 @@ private @safe { return stderr; } - auto stdoutFauxSafe() @trusted { - import std.stdio : stderr; - - return stderr; - } - auto stderr() { return stderrFauxSafe; } - auto stdout() { - return stderrFauxSafe; - } - alias RecorderOutput = SumType!(string, File); }