Remove unused stdout-getter from Pixmap Recorder

Wasn't even properly implemented anyway
and would have returned `stderr` instead.
This commit is contained in:
Elias Batek 2024-08-18 01:19:52 +02:00
parent 2a12df337d
commit 1d39d3b61e
1 changed files with 0 additions and 10 deletions

View File

@ -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);
}