binh
- Total activity 6
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 1
-
Created How to find usages method of the actual implementation, not interface
AnsweredI have same issue as: https://stackoverflow.com/q/58290379/5419748 public interface Dog { void bark(int volume); } public class Lab implements Dog { public void bark(int volume) { ...