001package net.minecraft.client.mco;
002
003import cpw.mods.fml.relauncher.Side;
004import cpw.mods.fml.relauncher.SideOnly;
005
006@SideOnly(Side.CLIENT)
007public class RequestGet extends Request
008{
009    public RequestGet(String par1Str, int par2, int par3)
010    {
011        super(par1Str, par2, par3);
012    }
013
014    public RequestGet func_96371_f()
015    {
016        try
017        {
018            this.field_96367_a.setDoInput(true);
019            this.field_96367_a.setDoOutput(true);
020            this.field_96367_a.setUseCaches(false);
021            this.field_96367_a.setRequestMethod("GET");
022            return this;
023        }
024        catch (Exception exception)
025        {
026            throw new ExceptionMcoHttp("Failed URL: " + this.field_96365_b, exception);
027        }
028    }
029
030    public Request func_96359_e()
031    {
032        return this.func_96371_f();
033    }
034}