Skip to content

Instantly share code, notes, and snippets.

@EvaGL
Created July 29, 2014 10:57
Show Gist options
  • Select an option

  • Save EvaGL/a64c24ce78bf6eddb06a to your computer and use it in GitHub Desktop.

Select an option

Save EvaGL/a64c24ce78bf6eddb06a to your computer and use it in GitHub Desktop.
public class A {
public void doSmth() {
System.out.println("YOLO!");
}
public void b() {
System.out.println("I am good method!");
}
}
public class B extends A {
@Override
public void doSmth() {
// NO YOLO!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment