override fun equals()

in src/com/pty4j/WinSize.kt [9:16]


  override fun equals(other: Any?): Boolean {
    if (this === other) return true
    if (javaClass != other?.javaClass) return false

    other as WinSize

    return columns == other.columns && rows == other.rows
  }