Skip to content

Commit 990d982

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/development'
2 parents 045274a + 0d8468e commit 990d982

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.module.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
project.name=cbjavaloader
2-
project.version=1.5.0
2+
project.version=1.6.0
33
module.name=cbjavaloader

box.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"cbjavaloader Builder",
3-
"version":"1.5.0",
3+
"version":"1.6.0",
44
"slug":"cbjavaloader-shell",
55
"private":false,
66
"defaultPort":0,

modules/cbjavaloader/models/Loader.cfc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ component accessors="true" singleton{
133133
*/
134134
array function arrayOfJars( required string dirPath, string filter="*.jar" ){
135135
if( not directoryExists( arguments.dirPath ) ){
136-
throw( message="Invalid library path", detail="The path is #path#", type="JavaLoader.DirectoryNotFoundException" );
136+
throw( message="Invalid library path", detail="The path is #dirPath#", type="JavaLoader.DirectoryNotFoundException" );
137137
}
138138

139139
return directoryList( arguments.dirPath, true, "array", arguments.filter, "name desc" );
@@ -154,4 +154,4 @@ component accessors="true" singleton{
154154
return structKeyExists( server, getstaticIDKey());
155155
}
156156

157-
}
157+
}

0 commit comments

Comments
 (0)