Implement “ping” command.
[Sone.git] / src / main / java / net / pterodactylus / sone / freenet / wot / OwnIdentity.java
index 626c4a8..d9ec160 100644 (file)
@@ -58,40 +58,4 @@ public class OwnIdentity extends Identity {
                return insertUri;
        }
 
-       /**
-        * Adds the given context to this identity.
-        *
-        * @param context
-        *            The context to add
-        */
-       public void addContext(String context) {
-               if (contexts.add(context)) {
-                       /* TODO - add. */
-               }
-       }
-
-       /**
-        * Removes the given context from this identity.
-        *
-        * @param context
-        *            The context to remove
-        */
-       public void removeContext(String context) {
-               if (contexts.remove(context)) {
-                       /* TODO - remove */
-               }
-       }
-
-       //
-       // OBJECT METHODS
-       //
-
-       /**
-        * {@inheritDoc}
-        */
-       @Override
-       public String toString() {
-               return getClass().getSimpleName() + "[id=" + getId() + ",nickname=" + getNickname() + ",requestUri=" + getRequestUri() + ",insertUri=" + insertUri + "]";
-       }
-
 }