Pull Up: Remove visibility modifiers on adding 'override'

#KT-13535 Fixed
This commit is contained in:
Alexey Sedunov
2016-08-19 14:36:14 +03:00
parent 47d4454590
commit 9607fd0620
7 changed files with 32 additions and 2 deletions
@@ -5,5 +5,5 @@ abstract class Upper {
open class Lower : Upper() {
// INFO: {"checked": "true", "toAbstract": "true"}
protected override val moving: Int = 0
override val moving: Int = 0
}