Skip to content

Commit ecaf15d

Browse files
committed
CCM-17 #resolved #close Error handling broken in javaloader
1 parent ce23268 commit ecaf15d

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

modules/cbjavaloader/ModuleConfig.cfc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ component {
1111
this.author = "Ortus Solutions";
1212
this.webURL = "http://www.ortussolutions.com";
1313
this.description = "A JavaLoader Module for ColdBox";
14-
this.version = "1.0.0[email protected]@";
14+
this.version = "1.0.1[email protected]@";
1515
// If true, looks for views in the parent first, if not found, then in the module. Else vice-versa
1616
this.viewParentLookup = true;
1717
// If true, looks for layouts in the parent first, if not found, then in module. Else vice-versa
@@ -58,7 +58,7 @@ component {
5858
*/
5959
private array function getJars( required string dirPath, string filter="*.jar" ){
6060
if( not directoryExists( arguments.dirPath ) ){
61-
throw( message="Invalid library path", detail="The path is #path#", type="JavaLoader.DirectoryNotFoundException" );
61+
throw( message="Invalid library path", detail="The path is #arguments.dirPath#", type="JavaLoader.DirectoryNotFoundException" );
6262
}
6363

6464
return directoryList( arguments.dirPath, true, "array", arguments.filter, "name desc" );

modules/cbjavaloader/box.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "JavaLoader",
3-
"version" : "1.0.0",
3+
"version" : "1.0.1",
44
"author" : "Luis Majano <[email protected]",
55
"slug" : "cbjavaloader",
66
"type" : "modules",

modules/cbjavaloader/changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
CHANGELOG
22
=========
33

4+
##1.0.1
5+
* https://ortussolutions.atlassian.net/browse/CCM-17 Error handling broken in javaloader
6+
47
##1.0.0
58
* Create first module version

workbench/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- Version: UPDATE ON EACH RELEASE AS NEEDED -->
44
<property name="project.name" value="cbjavaloader" />
55
<property name="module.name" value="cbjavaloader" />
6-
<property name="project.version" value="1.0.0"/>
6+
<property name="project.version" value="1.0.1"/>
77
<property name="groupID" value="ortussolutions" />
88

99
<!-- Build Labels -->

0 commit comments

Comments
 (0)