File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
modules/cbjavaloader/models Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 4
4
* ---
5
5
* The JavaLoader WireBox DSL
6
6
*/
7
- component implements = " coldbox.system.ioc.dsl.IDSLBuilder " accessors = " true" {
7
+ component accessors = " true" {
8
8
9
9
/**
10
10
* WireBox Injector
@@ -20,7 +20,7 @@ component implements="coldbox.system.ioc.dsl.IDSLBuilder" accessors="true"{
20
20
/**
21
21
* Constructor as per interface
22
22
*/
23
- public any function init ( required any injector ) output = " false " {
23
+ public any function init ( required any injector ){
24
24
variables .injector = arguments .injector ;
25
25
variables .log = arguments .injector .getLogBox ().getLogger ( this );
26
26
@@ -30,7 +30,7 @@ component implements="coldbox.system.ioc.dsl.IDSLBuilder" accessors="true"{
30
30
/**
31
31
* Process an incoming DSL definition and produce an object with it.
32
32
*/
33
- public any function process ( required definition , targetObject ) output = " false " {
33
+ public any function process ( required definition , targetObject ){
34
34
var DSLNamespace = listFirst ( arguments .definition .dsl , " :" );
35
35
switch ( DSLNamespace ){
36
36
case " javaloader" : { return getJavaLoaderDSL ( argumentCollection = arguments );}
@@ -47,4 +47,4 @@ component implements="coldbox.system.ioc.dsl.IDSLBuilder" accessors="true"{
47
47
return variables .injector .getInstance ( " loader@cbjavaloader" ).create ( className );
48
48
}
49
49
50
- }
50
+ }
You can’t perform that action at this time.
0 commit comments