I have an interface with these two methods.
E2EResult sendRoutingRequests(List<RoutingRequest> routingRequestsList);
E2EResult sendRoutingRequests(List<String> routingRequestsList);
The compiler shouts for:
java error both methods have same erasure
I saw some posts talking about same erasure
for java generics.
Can someone explain why is that?
It's different q than this post, because I don't deal with wild card.