Skip to content

Commit

Permalink
Fix ModuleControlled
Browse files Browse the repository at this point in the history
  • Loading branch information
Nedelosk committed Sep 10, 2016
1 parent b305cc9 commit 2cf283e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public List<IModuleContentHandler> createHandlers(IModuleState state) {

@Override
public IModuleControl getModuleControl(IModuleState state) {
return state.getContentHandler(IModuleControl.class);
return (IModuleControl)state.getContentHandler(IModuleControl.class);
}

@Override
Expand Down

0 comments on commit 2cf283e

Please sign in to comment.