Make identity loader injectable.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 27 Jun 2014 16:32:17 +0000 (18:32 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 27 Jun 2014 16:32:17 +0000 (18:32 +0200)
src/main/java/net/pterodactylus/sone/freenet/wot/IdentityLoader.java

index 5498eec..823653e 100644 (file)
@@ -30,6 +30,7 @@ import net.pterodactylus.sone.freenet.plugin.PluginException;
 import com.google.common.base.Function;
 import com.google.common.base.Optional;
 import com.google.common.collect.Multimap;
 import com.google.common.base.Function;
 import com.google.common.base.Optional;
 import com.google.common.collect.Multimap;
+import com.google.inject.Inject;
 
 /**
  * Loads {@link OwnIdentity}s and the {@link Identity}s they trust.
 
 /**
  * Loads {@link OwnIdentity}s and the {@link Identity}s they trust.
@@ -45,6 +46,7 @@ public class IdentityLoader {
                this(webOfTrustConnector, Optional.<Context>absent());
        }
 
                this(webOfTrustConnector, Optional.<Context>absent());
        }
 
+       @Inject
        public IdentityLoader(WebOfTrustConnector webOfTrustConnector, Optional<Context> context) {
                this.webOfTrustConnector = webOfTrustConnector;
                this.context = context;
        public IdentityLoader(WebOfTrustConnector webOfTrustConnector, Optional<Context> context) {
                this.webOfTrustConnector = webOfTrustConnector;
                this.context = context;