@@ -1708,27 +1708,27 @@ if (process.platform === 'win32') {
1708
1708
Object . defineProperty ( Server . prototype , '_usingSlaves' , {
1709
1709
get : internalUtil . deprecate ( function ( ) {
1710
1710
return this . _usingWorkers ;
1711
- } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP00XX ' ) ,
1711
+ } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP0073 ' ) ,
1712
1712
set : internalUtil . deprecate ( ( val ) => {
1713
1713
this . _usingWorkers = val ;
1714
- } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP00XX ' ) ,
1714
+ } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP0073 ' ) ,
1715
1715
configurable : true , enumerable : false
1716
1716
} ) ;
1717
1717
1718
1718
Object . defineProperty ( Server . prototype , '_slaves' , {
1719
1719
get : internalUtil . deprecate ( function ( ) {
1720
1720
return this . _workers ;
1721
- } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP00XX ' ) ,
1721
+ } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP0073 ' ) ,
1722
1722
set : internalUtil . deprecate ( ( val ) => {
1723
1723
this . _workers = val ;
1724
- } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP00XX ' ) ,
1724
+ } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP0073 ' ) ,
1725
1725
configurable : true , enumerable : false
1726
1726
} ) ;
1727
1727
1728
1728
Object . defineProperty ( Server . prototype , '_setupSlave' , {
1729
1729
value : internalUtil . deprecate ( function ( socketList ) {
1730
1730
return this . _setupWorker ( socketList ) ;
1731
- } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP00XX ' ) ,
1731
+ } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP0073 ' ) ,
1732
1732
configurable : true , enumerable : false
1733
1733
} ) ;
1734
1734
0 commit comments