qf$f.java
3.27 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
170
171
172
173
174
175
import com.google.common.annotations.GwtIncompatible;
import java.util.Deque;
import java.util.Iterator;
@GwtIncompatible("Deque")
public final class qf$f<E>
extends qf.p<E>
implements Deque<E>
{
private static final long serialVersionUID = 0L;
public qf$f(Deque<E> paramDeque)
{
super(paramDeque);
}
public final void addFirst(E paramE)
{
synchronized (this.h)
{
((Deque)super.c()).addFirst(paramE);
return;
}
}
public final void addLast(E paramE)
{
synchronized (this.h)
{
((Deque)super.c()).addLast(paramE);
return;
}
}
public final Iterator<E> descendingIterator()
{
synchronized (this.h)
{
Iterator localIterator = ((Deque)super.c()).descendingIterator();
return localIterator;
}
}
public final E getFirst()
{
synchronized (this.h)
{
Object localObject2 = ((Deque)super.c()).getFirst();
return (E)localObject2;
}
}
public final E getLast()
{
synchronized (this.h)
{
Object localObject2 = ((Deque)super.c()).getLast();
return (E)localObject2;
}
}
public final boolean offerFirst(E paramE)
{
synchronized (this.h)
{
boolean bool = ((Deque)super.c()).offerFirst(paramE);
return bool;
}
}
public final boolean offerLast(E paramE)
{
synchronized (this.h)
{
boolean bool = ((Deque)super.c()).offerLast(paramE);
return bool;
}
}
public final E peekFirst()
{
synchronized (this.h)
{
Object localObject2 = ((Deque)super.c()).peekFirst();
return (E)localObject2;
}
}
public final E peekLast()
{
synchronized (this.h)
{
Object localObject2 = ((Deque)super.c()).peekLast();
return (E)localObject2;
}
}
public final E pollFirst()
{
synchronized (this.h)
{
Object localObject2 = ((Deque)super.c()).pollFirst();
return (E)localObject2;
}
}
public final E pollLast()
{
synchronized (this.h)
{
Object localObject2 = ((Deque)super.c()).pollLast();
return (E)localObject2;
}
}
public final E pop()
{
synchronized (this.h)
{
Object localObject2 = ((Deque)super.c()).pop();
return (E)localObject2;
}
}
public final void push(E paramE)
{
synchronized (this.h)
{
((Deque)super.c()).push(paramE);
return;
}
}
public final E removeFirst()
{
synchronized (this.h)
{
Object localObject2 = ((Deque)super.c()).removeFirst();
return (E)localObject2;
}
}
public final boolean removeFirstOccurrence(Object paramObject)
{
synchronized (this.h)
{
boolean bool = ((Deque)super.c()).removeFirstOccurrence(paramObject);
return bool;
}
}
public final E removeLast()
{
synchronized (this.h)
{
Object localObject2 = ((Deque)super.c()).removeLast();
return (E)localObject2;
}
}
public final boolean removeLastOccurrence(Object paramObject)
{
synchronized (this.h)
{
boolean bool = ((Deque)super.c()).removeLastOccurrence(paramObject);
return bool;
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/qf$f.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/