1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-08 15:46:54 +02:00

Implement abstract methods

This commit is contained in:
Chris Ward
2013-01-10 22:57:08 +11:00
parent 27a803f744
commit 316bfeb2b4

View File

@@ -1156,4 +1156,16 @@ public class OfflinePlayer implements Player
{
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public void setMaxHealth(int i)
{
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public void resetMaxHealth()
{
throw new UnsupportedOperationException("Not supported yet.");
}
}