001 package net.minecraft.crash;
002
003 import java.util.concurrent.Callable;
004
005 public 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.4.7";
021 }
022
023 public Object call()
024 {
025 return this.minecraftVersion();
026 }
027 }