Added 'public' annotation and specified return types for library functions

This commit is contained in:
Svetlana Isakova
2012-03-29 20:45:59 +04:00
parent aefabd132e
commit 167a9c444a
55 changed files with 1435 additions and 1435 deletions
@@ -1,15 +1,15 @@
package test
open class Test() : Base() {
override public fun hashCode() : Int {
public override fun hashCode() : Int {
return super.hashCode()
}
override public fun equals(o : Any?) : Boolean {
public override fun equals(o : Any?) : Boolean {
return super.equals(o)
}
override protected fun clone() : Any? {
return super.clone()
}
override public fun toString() : String? {
public override fun toString() : String? {
return super.toString()
}
override protected fun finalize() : Unit {