Skip to content

Instantly share code, notes, and snippets.

@CodingFabian
Created February 6, 2017 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CodingFabian/c4ac8a36a7c525858742824abc25c39e to your computer and use it in GitHub Desktop.
Save CodingFabian/c4ac8a36a7c525858742824abc25c39e to your computer and use it in GitHub Desktop.
public class A implements IF {
public void foo(Object arg) {
}
}
public interface IF {
void foo(String arg);
}
public interface IF<String> {
void foo(String arg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment