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 /**
016 * The current version of Minecraft
017 */
018 public String minecraftVersion()
019 {
020 return "1.4";
021 }
022
023 public Object call()
024 {
025 return this.minecraftVersion();
026 }
027 }