qf$p.java
1.11 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
import java.util.Queue;
public class qf$p<E>
extends qf.e<E>
implements Queue<E>
{
private static final long serialVersionUID = 0L;
public qf$p(Queue<E> paramQueue)
{
super(paramQueue, null, (byte)0);
}
Queue<E> c()
{
return (Queue)super.a();
}
public E element()
{
synchronized (this.h)
{
Object localObject2 = c().element();
return (E)localObject2;
}
}
public boolean offer(E paramE)
{
synchronized (this.h)
{
boolean bool = c().offer(paramE);
return bool;
}
}
public E peek()
{
synchronized (this.h)
{
Object localObject2 = c().peek();
return (E)localObject2;
}
}
public E poll()
{
synchronized (this.h)
{
Object localObject2 = c().poll();
return (E)localObject2;
}
}
public E remove()
{
synchronized (this.h)
{
Object localObject2 = c().remove();
return (E)localObject2;
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/qf$p.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/