File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
modules/cbjavaloader/models/javaloader Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -121,16 +121,16 @@ Mark Mandel 27/08/2007 Created
121
121
< / cffunction >
122
122
123
123
< cffunction name = " _buildArgumentArray" hint = " builds an argument array out of the arguments" access = " private" returntype = " array" output = " false" >
124
- < cfargument name = " arguments " hint = " the arguments passed through" type = " struct" required = " Yes" >
124
+ < cfargument name = " args " hint = " the arguments passed through" type = " struct" required = " Yes" >
125
125
< cfscript >
126
- var len = StructCount (arguments );
126
+ var len = StructCount (args );
127
127
var objArray = _getArray ().newInstance (_getObjectClass (), len );
128
128
var counter = 1 ;
129
129
var obj = 0 ;
130
130
131
131
for (; counter <= len ; counter ++ )
132
132
{
133
- obj = arguments [counter ];
133
+ obj = args [counter ];
134
134
_getArray ().set (objArray , counter - 1 , obj );
135
135
}
136
136
You can’t perform that action at this time.
0 commit comments