oy.java
1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSortedMap;
import com.google.common.collect.ImmutableSortedMap.Builder;
public abstract class oy<K, V>
extends ImmutableMap<K, V>
{
@Deprecated
public static <K, V> ImmutableSortedMap.Builder<K, V> builder()
{
throw new UnsupportedOperationException();
}
@Deprecated
public static <K, V> ImmutableSortedMap<K, V> of(K paramK, V paramV)
{
throw new UnsupportedOperationException();
}
@Deprecated
public static <K, V> ImmutableSortedMap<K, V> of(K paramK1, V paramV1, K paramK2, V paramV2)
{
throw new UnsupportedOperationException();
}
@Deprecated
public static <K, V> ImmutableSortedMap<K, V> of(K paramK1, V paramV1, K paramK2, V paramV2, K paramK3, V paramV3)
{
throw new UnsupportedOperationException();
}
@Deprecated
public static <K, V> ImmutableSortedMap<K, V> of(K paramK1, V paramV1, K paramK2, V paramV2, K paramK3, V paramV3, K paramK4, V paramV4)
{
throw new UnsupportedOperationException();
}
@Deprecated
public static <K, V> ImmutableSortedMap<K, V> of(K paramK1, V paramV1, K paramK2, V paramV2, K paramK3, V paramV3, K paramK4, V paramV4, K paramK5, V paramV5)
{
throw new UnsupportedOperationException();
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/oy.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/