b0e97de8a8
Placing location table inside .java file triggers annotation processor to run on each line table modification (even when the stub declarations themselves are the same). So we move it to the separate file.
20 lines
538 B
Plaintext
Vendored
20 lines
538 B
Plaintext
Vendored
package test;
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public final class MutableEntry<K extends java.lang.Object, V extends java.lang.Object> implements java.util.Map.Entry<K, V>, kotlin.jvm.internal.markers.KMutableMap.Entry {
|
|
private final java.util.Map<K, V> internal = null;
|
|
private final K key = null;
|
|
|
|
@java.lang.Override()
|
|
public K getKey() {
|
|
return null;
|
|
}
|
|
|
|
public MutableEntry(@org.jetbrains.annotations.NotNull()
|
|
java.util.Map<K, V> internal, K key, V value) {
|
|
super();
|
|
}
|
|
}
|