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

Implement abstract methods

This commit is contained in:
GunfighterJ
2013-07-08 19:28:24 -05:00
parent 4e9a42671f
commit 427d8cc4e0

View File

@@ -1279,4 +1279,16 @@ public class OfflinePlayer implements Player
{
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public boolean isScaledHealth()
{
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public void setScaleHealth(boolean bln)
{
throw new UnsupportedOperationException("Not supported yet.");
}
}