// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package io.fabric.sdk.android.services.events; import android.content.Context; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import java.util.zip.GZIPOutputStream; // Referenced classes of package io.fabric.sdk.android.services.events: // QueueFileEventStorage public class GZIPQueueFileEventStorage extends QueueFileEventStorage { public GZIPQueueFileEventStorage(Context context, File file, String s, String s1) throws IOException { super(context, file, s, s1); } public OutputStream getMoveOutputStream(File file) throws IOException { return new GZIPOutputStream(new FileOutputStream(file)); } }