Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NoSuchElementException (0.17 sec)

  1. okhttp/src/main/kotlin/okhttp3/Cache.kt

                // has disappeared! Skip it.
              }
            }
    
            return false
          }
    
          override fun next(): String {
            if (!hasNext()) throw NoSuchElementException()
            val result = nextUrl!!
            nextUrl = null
            canRemove = true
            return result
          }
    
          override fun remove() {
            check(canRemove) { "remove() before next()" }
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 26.8K bytes
    - Viewed (0)
Back to top