Core.addListner is deprecated - Error in java

0
Hello folks,   Hope you are doing well! I am upgrading my mendix app from 7.23.30 to 8.18.23 and facing an issue in StartLoginHandler class as Core.addListner is deprecated documentation says it is replaced by Interface ListenersRegistry.    Can someone help me out calling method of ListenersRegistry i.e ListnerRegistry.addListner and how will it work? TIA  
asked
1 answers
1

Hi Surbhi, without knowing the rest of your implementation, according to the docs, you should be able to replace

Core.addListener(loginActionListener);

with

Core.getListenersRegistry().addListener(loginActionListener);

 

answered