You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: javaloader/JavaLoader.cfc
+20-60
Original file line number
Diff line number
Diff line change
@@ -104,9 +104,9 @@ Purpose: Utlitity class for loading Java Classes
104
104
105
105
<cffunctionname="switchThreadContextClassLoader"hint="Sometimes you will need to switch out the ThreadContextClassLoader with the classloader used by JavaLoader.<br/>
106
106
It has :
107
-
switchThreadContextClassLoader(function object, [struct function arguments], [classLoader=getURLClassLoader()])
108
-
switchThreadContextClassLoader(function name, [struct function arguments], [classLoader=getURLClassLoader()])
109
-
switchThreadContextClassLoader(object, function name, [struct function arguments], [classLoader=getURLClassLoader()])
<cfthrowtype="javaloader.InvalidInvocationException"message="Unable to determine what method to invoke"detail="Please check the documentation for switchThreadContextClassLoader."/>
193
153
</cfif>
@@ -315,7 +275,7 @@ Purpose: Utlitity class for loading Java Classes
315
275
for(; counterltelen; counter =counter+1)
316
276
{
317
277
dir=directories[counter];
318
-
$directoryCopy(dir, path);
278
+
directoryCopy(dir, path);
319
279
}
320
280
321
281
//then we compile it, and grab that jar
@@ -478,11 +438,11 @@ Purpose: Utlitity class for loading Java Classes
0 commit comments