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
+2 -2
View File
@@ -38,8 +38,8 @@ public trait OutputFile {
}
class SimpleOutputFile(
public override val sourceFiles: List<File>,
public override val relativePath: String,
override val sourceFiles: List<File>,
override val relativePath: String,
private val content: String
) : OutputFile {
override fun asByteArray(): ByteArray = content.toByteArray()