Added new methods to Fake classes

This commit is contained in:
snowleo 2011-11-20 14:30:54 +01:00
parent 765ec51b32
commit 1f6b1f4a2c
2 changed files with 13 additions and 0 deletions

View File

@ -3,6 +3,7 @@ package com.earth2me.essentials;
import java.net.InetSocketAddress;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.UUID;
import lombok.Delegate;
@ -777,4 +778,10 @@ public class OfflinePlayer implements Player
{
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public int getMaxHealth()
{
throw new UnsupportedOperationException("Not supported yet.");
}
}

View File

@ -580,4 +580,10 @@ public class FakeServer implements Server
{
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public String getBukkitVersion()
{
throw new UnsupportedOperationException("Not supported yet.");
}
}