/usr/share/SuperCollider/SCClassLibrary/deprecated/deprecated-3.6.sc is in supercollider-common 1:3.6.3~repack-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | + MIDIIn {
*new { arg port;
DeprecatedError(this, thisMethod).throw;
^super.new.port_(port)
}
port {
DeprecatedError(this, thisMethod).throw;
^port
}
port_ { |newPort|
DeprecatedError(this, thisMethod).throw;
port = newPort;
}
}
|