Use cached values.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 29 Oct 2010 23:30:08 +0000 (01:30 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 29 Oct 2010 23:30:08 +0000 (01:30 +0200)
src/main/java/net/pterodactylus/sone/freenet/wot/OwnIdentity.java

index 74b5f6a..ecb8f25 100644 (file)
@@ -67,7 +67,7 @@ public class OwnIdentity extends Identity {
         *            The context to add
         */
        public void addContext(String context) {
-               if (contexts.add(context)) {
+               if (getContexts().add(context)) {
                        /* TODO - add. */
                }
        }
@@ -79,7 +79,7 @@ public class OwnIdentity extends Identity {
         *            The context to remove
         */
        public void removeContext(String context) {
-               if (contexts.remove(context)) {
+               if (getContexts().remove(context)) {
                        /* TODO - remove */
                }
        }