File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ component{
2323 case " ColdFusion Server" :
2424 my .out = getPageContext ().getOut ();
2525 // It's necessary to iterate over this until we get to a coldfusion.runtime.NeoJspWriter
26- while ( condition = " getMetaData( my.out ).getName() == 'coldfusion.runtime.NeoBodyContent'" ) {
26+ while ( getMetaData ( my .out ).getName () == ' coldfusion.runtime.NeoBodyContent' ) {
2727 my .out = my .out .getEnclosingWriter ();
2828 }
2929 my .method = my .out .getClass ().getDeclaredMethod ( " initHeaderBuffer" , [] );
@@ -32,7 +32,7 @@ component{
3232 break ;
3333 case " Lucee" :
3434 my .out = getPageContext ().getOut ();
35- while ( condition = " getMetaData( my.out ).getName() == 'lucee.runtime.writer.BodyContentImpl'" ) {
35+ while ( getMetaData ( my .out ).getName () == ' lucee.runtime.writer.BodyContentImpl' ) {
3636 my .out = my .out .getEnclosingWriter ();
3737 }
3838 my .headData = my .out .getClass ().getDeclaredField ( " headData" );
You can’t perform that action at this time.
0 commit comments