fixed up compile errors after recent visibility rule changes

This commit is contained in:
James Strachan
2012-04-03 19:04:05 +01:00
parent 0a0e360fcf
commit f471c572d2
10 changed files with 32 additions and 33 deletions
@@ -11,10 +11,10 @@ import java.util.List
fun ResultSet.iterator() : Iterator<ResultSet> {
val rs = this
return object : Iterator<ResultSet>{
override val hasNext : Boolean
public override val hasNext : Boolean
get() = rs.next()
override fun next() : ResultSet = rs
public override fun next() : ResultSet = rs
}
}