restore suggestion to remove 'abstract' when method has body

This commit is contained in:
Anna Kozlova
2013-08-26 14:02:43 +04:00
parent c57c308286
commit 4be2bcf4f0
3 changed files with 17 additions and 1 deletions
@@ -0,0 +1,8 @@
// "Make 'a' not abstract" "true"
import java.io.*;
abstract class A {
abstract void a<caret>() {
}
}