001    package net.minecraft.src;
002    
003    import java.util.concurrent.Callable;
004    
005    public class CallableMinecraftVersion implements Callable
006    {
007        /** Gets the Crash Rrport current Minecraft version. */
008        final CrashReport crashReportMinecraftVersion;
009    
010        public CallableMinecraftVersion(CrashReport par1CrashReport)
011        {
012            this.crashReportMinecraftVersion = par1CrashReport;
013        }
014    
015        public String func_71493_a()
016        {
017            return "1.3.2";
018        }
019    
020        public Object call()
021        {
022            return this.func_71493_a();
023        }
024    }