- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
39 lines
1.2 KiB
Java
39 lines
1.2 KiB
Java
package org.apache.http.message;
|
|
|
|
import java.util.NoSuchElementException;
|
|
import org.apache.http.HeaderElement;
|
|
import org.apache.http.HeaderElementIterator;
|
|
import org.apache.http.HeaderIterator;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public class BasicHeaderElementIterator implements HeaderElementIterator {
|
|
public BasicHeaderElementIterator(HeaderIterator headerIterator, HeaderValueParser headerValueParser) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public BasicHeaderElementIterator(HeaderIterator headerIterator) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.HeaderElementIterator, java.util.Iterator
|
|
public boolean hasNext() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.HeaderElementIterator
|
|
public HeaderElement nextElement() throws NoSuchElementException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // java.util.Iterator
|
|
public final Object next() throws NoSuchElementException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // java.util.Iterator
|
|
public void remove() throws UnsupportedOperationException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|