home *** CD-ROM | disk | FTP | other *** search
- import java.io.ByteArrayInputStream;
- import java.io.IOException;
- import sun.awt.image.URLImageSource;
-
- class ImageSource extends URLImageSource {
- // $FF: renamed from: is java.io.ByteArrayInputStream
- ByteArrayInputStream field_0;
- // $FF: renamed from: ─Ö byte[]
- byte[] field_1;
-
- public ImageSource() {
- super(Flash.─ò.getCodeBase().toString());
- }
-
- // $FF: renamed from: ─Ö (byte[]) void
- void method_0(byte[] var1) {
- this.field_1 = var1;
- }
-
- // $FF: renamed from: ─Ü () void
- void method_1() {
- this.field_0 = new ByteArrayInputStream(this.field_1);
- }
-
- // $FF: renamed from: ─¢ () void
- void method_2() {
- try {
- if (this.field_0 != null) {
- this.field_0.close();
- this.field_0 = null;
- return;
- }
- } catch (IOException var1) {
- }
-
- }
- }
-