ForwardingSink.java
1.02 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
package okio;
import java.io.IOException;
public abstract class ForwardingSink
implements Sink
{
private final Sink delegate;
public ForwardingSink(Sink paramSink)
{
if (paramSink == null) {
throw new IllegalArgumentException("delegate == null");
}
this.delegate = paramSink;
}
public void close()
throws IOException
{
this.delegate.close();
}
public final Sink delegate()
{
return this.delegate;
}
public void flush()
throws IOException
{
this.delegate.flush();
}
public Timeout timeout()
{
return this.delegate.timeout();
}
public String toString()
{
return getClass().getSimpleName() + "(" + this.delegate.toString() + ")";
}
public void write(Buffer paramBuffer, long paramLong)
throws IOException
{
this.delegate.write(paramBuffer, paramLong);
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/okio/ForwardingSink.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/