mirror of https://github.com/adamdruppe/arsd.git
Remove unused stdout-getter from Pixmap Recorder
Wasn't even properly implemented anyway and would have returned `stderr` instead.
This commit is contained in:
parent
2a12df337d
commit
1d39d3b61e
|
@ -84,20 +84,10 @@ private @safe {
|
||||||
return stderr;
|
return stderr;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto stdoutFauxSafe() @trusted {
|
|
||||||
import std.stdio : stderr;
|
|
||||||
|
|
||||||
return stderr;
|
|
||||||
}
|
|
||||||
|
|
||||||
auto stderr() {
|
auto stderr() {
|
||||||
return stderrFauxSafe;
|
return stderrFauxSafe;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto stdout() {
|
|
||||||
return stderrFauxSafe;
|
|
||||||
}
|
|
||||||
|
|
||||||
alias RecorderOutput = SumType!(string, File);
|
alias RecorderOutput = SumType!(string, File);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue