001package net.minecraft.crash;
002
003import java.util.concurrent.Callable;
004
005public class CallableMinecraftVersion implements Callable
006{
007    /** Reference to the CrashReport object. */
008    final CrashReport theCrashReport;
009
010    public CallableMinecraftVersion(CrashReport par1CrashReport)
011    {
012        this.theCrashReport = par1CrashReport;
013    }
014
015    /**
016     * The current version of Minecraft
017     */
018    public String minecraftVersion()
019    {
020        return "1.5.1";
021    }
022
023    public Object call()
024    {
025        return this.minecraftVersion();
026    }
027}