restore suggestion to remove 'abstract' when method has body

This commit is contained in:
Anna Kozlova
2013-08-26 13:24:10 +04:00
parent c57c308286
commit 4be2bcf4f0
3 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
// "Make 'a' not abstract" "true"
import java.io.*;
abstract class A {
void a<caret>() {
}
}