mu$j.java
3.16 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
import java.util.Collection;
import java.util.List;
import java.util.ListIterator;
import javax.annotation.Nullable;
class mu$j
extends mu<K, V>.i
implements List<V>
{
mu$j(K paramK, @Nullable List<V> paramList, mu<K, V>.i parammu)
{
super(paramK, paramList, parammu, locali);
}
public void add(int paramInt, V paramV)
{
a();
boolean bool = this.c.isEmpty();
((List)this.c).add(paramInt, paramV);
mu.c(this.g);
if (bool) {
c();
}
}
public boolean addAll(int paramInt, Collection<? extends V> paramCollection)
{
boolean bool1;
if (paramCollection.isEmpty()) {
bool1 = false;
}
int i;
boolean bool2;
do
{
do
{
return bool1;
i = size();
bool2 = ((List)this.c).addAll(paramInt, paramCollection);
bool1 = bool2;
} while (!bool2);
paramInt = this.c.size();
mu.a(this.g, paramInt - i);
bool1 = bool2;
} while (i != 0);
c();
return bool2;
}
public V get(int paramInt)
{
a();
return (V)((List)this.c).get(paramInt);
}
public int indexOf(Object paramObject)
{
a();
return ((List)this.c).indexOf(paramObject);
}
public int lastIndexOf(Object paramObject)
{
a();
return ((List)this.c).lastIndexOf(paramObject);
}
public ListIterator<V> listIterator()
{
a();
return new mu.j.a();
}
public ListIterator<V> listIterator(int paramInt)
{
a();
return new mu.j.a(paramInt);
}
public V remove(int paramInt)
{
a();
Object localObject = ((List)this.c).remove(paramInt);
mu.b(this.g);
b();
return (V)localObject;
}
public V set(int paramInt, V paramV)
{
a();
return (V)((List)this.c).set(paramInt, paramV);
}
public List<V> subList(int paramInt1, int paramInt2)
{
a();
mu localmu = this.g;
Object localObject2 = this.b;
List localList = ((List)this.c).subList(paramInt1, paramInt2);
if (this.d == null) {}
for (Object localObject1 = this;; localObject1 = this.d) {
return mu.a(localmu, localObject2, localList, (mu.i)localObject1);
}
}
final class a
extends mu<K, V>.i.a
implements ListIterator<V>
{
a()
{
super();
}
public a(int paramInt)
{
super(((List)mu.j.this.c).listIterator(paramInt));
}
private ListIterator<V> b()
{
a();
return (ListIterator)this.a;
}
public final void add(V paramV)
{
boolean bool = mu.j.this.isEmpty();
b().add(paramV);
mu.c(mu.j.this.g);
if (bool) {
mu.j.this.c();
}
}
public final boolean hasPrevious()
{
return b().hasPrevious();
}
public final int nextIndex()
{
return b().nextIndex();
}
public final V previous()
{
return (V)b().previous();
}
public final int previousIndex()
{
return b().previousIndex();
}
public final void set(V paramV)
{
b().set(paramV);
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/mu$j.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/