Skip to content

Commit bca04d6

Browse files
committed
COLDBOX-1354 #resolve
RequestContext removed methods: isSES(), setSESEnabled()
1 parent ba57d68 commit bca04d6

File tree

4 files changed

+1
-28
lines changed

4 files changed

+1
-28
lines changed

system/modules/HTMLHelper/models/HTMLHelper.cfc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,6 @@ component
6565
* asset argument to try to load all of them. You can also make this method return the string
6666
* that will be sent to the header instead.
6767
*
68-
* If the setings: htmlHelper_js_path exists, we will use it as a prefix for JS files (Deprecated by 5.2)
69-
* If the setings: htmlhelper_css_path exists, we will use it as a prefix for CSS Files (Deprecated by 5.2)
70-
*
7168
* In 5.2 the HTML Helper is an internal module, to configure it levareage the `HTMLHelper` module settings.
7269
*
7370
* This method tracks assets in the PRC via the key: <strong>cbox_assets</strong>

system/remote/ColdboxProxy.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ component serializable="false" accessors="true" {
148148
}
149149

150150
/**
151-
* @deprecated Please use the new `emit()` function
151+
* @deprecated Please use the new `announce()` function
152152
*/
153153
private function announceInterception(
154154
required state,

system/web/Controller.cfc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -402,10 +402,6 @@ component serializable="false" accessors="true" {
402402
return getSetting( "environment", "production" ) == "testing" || isInstanceOf( this, "MockController" );
403403
}
404404

405-
/****************************************************************
406-
* Deprecated Methods *
407-
****************************************************************/
408-
409405
/****************************************************************
410406
* Relocation Helpers *
411407
****************************************************************/

system/web/context/RequestContext.cfc

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1198,26 +1198,6 @@ component serializable="false" accessors="true" {
11981198
/************************************** URL METHODS ****************************************************/
11991199
/***********************************************************************************************************/
12001200

1201-
/**
1202-
* Setter for verifying SES mode
1203-
*
1204-
* @deprecated This will be removed in ColdBox 7
1205-
*
1206-
* @return RequestContext
1207-
*/
1208-
function setSESEnabled( required boolean flag ){
1209-
return this;
1210-
}
1211-
1212-
/**
1213-
* Verify if SES is enabled or not in the request
1214-
*
1215-
* @deprecated This will be removed in ColdBox 7
1216-
*/
1217-
boolean function isSES(){
1218-
return true;
1219-
}
1220-
12211201
/**
12221202
* Get the HTML base URL that is used for the HTML <base> tag. This also accounts for SSL or not.
12231203
*/

0 commit comments

Comments
 (0)