Skip to content

Instantly share code, notes, and snippets.

@wabu
Created April 26, 2010 11:19
Show Gist options
  • Save wabu/379218 to your computer and use it in GitHub Desktop.
Save wabu/379218 to your computer and use it in GitHub Desktop.
// class that sould be affected
class A {
private void foo()
}
class B {
void bar() {
new A().foo(); // error, not public
// use :JavaCorrect here
// select make foo public
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment