Skip to content

Commit 68df12a

Browse files
committed
COLDBOX-1353 #resolve
Util: getSystemSetting, getSystemProperty, getEnv() removed in favor to the Env Delegate
1 parent 1ab60c4 commit 68df12a

File tree

1 file changed

+0
-28
lines changed

1 file changed

+0
-28
lines changed

system/core/util/Util.cfc

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -515,32 +515,4 @@ component {
515515
}
516516
}
517517

518-
/**
519-
**************************************************************************************************************
520-
* DEPRECATED FUNCTIONS
521-
* TODO: REMOVE BY V8
522-
* **************************************************************************************************************
523-
*/
524-
525-
/**
526-
* @deprecated Refactor to use the Env Delegate: coldbox.system.core.delegates.Env
527-
*/
528-
function getSystemSetting( required key, defaultValue ){
529-
return new coldbox.system.core.delegates.Env().getSystemSetting( argumentCollection = arguments );
530-
}
531-
532-
/**
533-
* @deprecated Refactor to use the Env Delegate: coldbox.system.core.delegates.Env
534-
*/
535-
function getSystemProperty( required key, defaultValue ){
536-
return new coldbox.system.core.delegates.Env().getSystemProperty( argumentCollection = arguments );
537-
}
538-
539-
/**
540-
* @deprecated Refactor to use the Env Delegate: coldbox.system.core.delegates.Env
541-
*/
542-
function getEnv( required key, defaultValue ){
543-
return new coldbox.system.core.delegates.Env().getEnv( argumentCollection = arguments );
544-
}
545-
546518
}

0 commit comments

Comments
 (0)