@@ -1708,27 +1708,27 @@ if (process.platform === 'win32') {
17081708Object . defineProperty ( Server . prototype , '_usingSlaves' , {
17091709 get : internalUtil . deprecate ( function ( ) {
17101710 return this . _usingWorkers ;
1711- } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP00XX ' ) ,
1711+ } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP0073 ' ) ,
17121712 set : internalUtil . deprecate ( ( val ) => {
17131713 this . _usingWorkers = val ;
1714- } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP00XX ' ) ,
1714+ } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP0073 ' ) ,
17151715 configurable : true , enumerable : false
17161716} ) ;
17171717
17181718Object . defineProperty ( Server . prototype , '_slaves' , {
17191719 get : internalUtil . deprecate ( function ( ) {
17201720 return this . _workers ;
1721- } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP00XX ' ) ,
1721+ } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP0073 ' ) ,
17221722 set : internalUtil . deprecate ( ( val ) => {
17231723 this . _workers = val ;
1724- } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP00XX ' ) ,
1724+ } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP0073 ' ) ,
17251725 configurable : true , enumerable : false
17261726} ) ;
17271727
17281728Object . defineProperty ( Server . prototype , '_setupSlave' , {
17291729 value : internalUtil . deprecate ( function ( socketList ) {
17301730 return this . _setupWorker ( socketList ) ;
1731- } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP00XX ' ) ,
1731+ } , 'Accessing internal properties of net.Server is deprecated.' , 'DEP0073 ' ) ,
17321732 configurable : true , enumerable : false
17331733} ) ;
17341734
0 commit comments