From 5c99eee0c0f7ced5ab4615b4edec66651156aaf7 Mon Sep 17 00:00:00 2001 From: Chris Ward Date: Thu, 10 Jan 2013 22:57:08 +1100 Subject: [PATCH] Implement abstract methods --- .../src/com/earth2me/essentials/OfflinePlayer.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java index 4e61177c9..51dc92337 100644 --- a/Essentials/src/com/earth2me/essentials/OfflinePlayer.java +++ b/Essentials/src/com/earth2me/essentials/OfflinePlayer.java @@ -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."); + } }