Removing unneeded "public override val" from constructors across the project

#KT-4295 Fixed
This commit is contained in:
Andrey Breslav
2014-07-05 18:10:35 +04:00
parent caec40b3a8
commit 98e87f2f95
20 changed files with 56 additions and 56 deletions
@@ -26,7 +26,7 @@ fun PsiNameIdentifierOwner.declarationIdentifier(): Identifier {
class Identifier(
val name: String,
public override val isNullable: Boolean = true,
override val isNullable: Boolean = true,
private val quotingNeeded: Boolean = true
) : Expression() {