Merge pull request #506 from andrewcsmith/patch-2
[supercollider.git] / SCClassLibrary / deprecated / deprecated-3.6.sc
blob6d3f815c4fcbbb76fc87a24a968eab8cc9ffd93a
1 + MIDIIn {
2         *new { arg port;
3                 DeprecatedError(this, thisMethod).throw;
4                 ^super.new.port_(port)
5         }
6         port {
7                 DeprecatedError(this, thisMethod).throw;                
8                 ^port
9         }
10         port_ { |newPort|
11                 DeprecatedError(this, thisMethod).throw;                
12                 port = newPort;
13         }