Skip to content

Commit 5bbf574

Browse files
When you rename a method, you have to invoke it using the new name 🧠
1 parent 87717d8 commit 5bbf574

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎ng-appserver/src/main/java/ng/appserver/NGComponentReference.java‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ private void beforeComponent( final NGContext context ) {
5757
// If no instance was obtained, we need to create the component instance and insert it into the parent's child map.
5858
if( newComponentInstance == null ) {
5959
// Load up our component's definition
60-
final NGComponentDefinition componentDefinition = NGApplication.application().elementManager()._componentDefinition( _componentName );
60+
final NGComponentDefinition componentDefinition = NGApplication.application().elementManager().componentDefinition( _componentName );
6161

6262
// ...and obtain an instance of the component
6363
newComponentInstance = componentDefinition.componentInstanceInContext( context );

0 commit comments

Comments
 (0)