I have a method declared as below
<T> T getAdapter(Adaptable adaptable, Class<T> extensionInterface);
and I'm calling it with below argumants
adapterManager.getAdapter(new AWScoreAdapterImpl(null), AWScoreAdapter.class);
Can someone help me understand why the above line is causing the below compile time error
The method getAdapter(Adaptable, Class) in the type AdapterManager is not applicable for the arguments (AWScoreAdapterImpl, Class)