package net.minecraft.entity; import java.util.concurrent.Callable; import net.minecraft.potion.PotionEffect; class CallableEffectID implements Callable { final PotionEffect field_102034_a; final EntityLiving field_102033_b; CallableEffectID(EntityLiving par1EntityLiving, PotionEffect par2PotionEffect) { this.field_102033_b = par1EntityLiving; this.field_102034_a = par2PotionEffect; } public String func_102032_a() { return this.field_102034_a.getPotionID() + ""; } public Object call() { return this.func_102032_a(); } }