push down: apply javadoc settings when keep abstract (IDEA-155596)

This commit is contained in:
Anna.Kozlova
2016-05-04 20:18:45 +02:00
parent efa0c5c53b
commit 1a70d8bcbd
6 changed files with 66 additions and 17 deletions
@@ -0,0 +1,8 @@
abstract class Test {
/**
* foo's javadoc
*/
abstract void foo();
}
abstract class B extends Test {}