Skip to content

Commit

Permalink
Remove commented out code.
Browse files Browse the repository at this point in the history
  • Loading branch information
grantcopley committed Mar 27, 2024
1 parent 18878b8 commit d14e419
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions models/renderer/RendererEncapsulator.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -36,36 +36,6 @@
} );
}
// variables[ "wire" ] = function( componentName, parameters = {}, key = "" ) {
// var lineNumber = callStackGet()[ 2 ].lineNumber;
// var comp = application.wirebox.getInstance( "CBWireService@cbwire" )
// .getComponentInstance( arguments.componentName )
// .startup();
// var componentIdentifier = createUUID() & "-" & lineNumber;
// if ( toString( arguments.key ).len() ) {
// componentIdentifier = toString( arguments.key ) & "-" & lineNumber;
// }
// comp.setID( componentIdentifier );
// if ( attributes.cbwireComponent.getIsInitialRendering() ) {
// return comp.mount( arguments.parameters )
// .renderIt();
// }
// var serverMemo = attributes.cbwireComponent.getServerMemo();
// if ( structKeyExists( serverMemo.children, comp.getID() ) ) {
// // This has already been rendered by the server.
// // Pass in the id and tag so we can partially render it.
// return comp.partiallyRenderIt( id=componentIdentifier, tag=serverMemo.children[ comp.getID() ].tag );
// } else {
// return comp.mount( arguments.parameters )
// .renderIt();
// }
// };
variables[ "entangle" ] = function( required prop ) {
var cbwireService = application.wirebox.getInstance( "CBWireService@cbwire" );
return cbwireService.entangle( argumentCollection=arguments );
Expand Down

0 comments on commit d14e419

Please sign in to comment.