*/
public void addSone(Sone sone) {
if (localSones.add(sone)) {
- SoneInserter soneInserter = new SoneInserter(sone);
+ SoneInserter soneInserter = new SoneInserter(freenetInterface, sone);
soneInserter.start();
soneInserters.put(sone, soneInserter);
}
/**
* Creates a new Sone inserter.
*
+ * @param freenetInterface
+ * The freenet interface
* @param sone
* The Sone to insert
*/
- public SoneInserter(Sone sone) {
+ public SoneInserter(FreenetInterface freenetInterface, Sone sone) {
super("Sone Inserter for “" + sone.getName() + "”");
this.sone = sone;
}