fix: unused imports

This commit is contained in:
Laureηt 2022-01-16 10:50:52 +01:00
parent ce0c59d56d
commit 288c851e3f
No known key found for this signature in database
GPG key ID: D88C6B294FD40994
2 changed files with 1 additions and 18 deletions

View file

@ -15,7 +15,6 @@ import linda.Tuple;
import linda.Linda.eventMode; import linda.Linda.eventMode;
import linda.Linda.eventTiming; import linda.Linda.eventTiming;
import linda.server.LindaClient; import linda.server.LindaClient;
import linda.server.SCallback;
public class Manager implements Runnable { public class Manager implements Runnable {
@ -103,7 +102,7 @@ public class Manager implements Runnable {
} }
} }
private class CbUpdate implements SCallback { private class CbUpdate implements Callback {
public void call(Tuple t) { // [ Result, ?UUID, ?String, ?Integer ] public void call(Tuple t) { // [ Result, ?UUID, ?String, ?Integer ]
UUID reqUUID = (UUID) t.get(1); UUID reqUUID = (UUID) t.get(1);
String s = (String) t.get(2); String s = (String) t.get(2);

View file

@ -1,16 +0,0 @@
package linda.server;
import java.io.Serializable;
import linda.Callback;
import linda.Tuple;
public interface SCallback extends Serializable, Callback {
/**
* Callback when a tuple appears.
* See Linda.eventRegister for details.
*
* @param t the new tuple
*/
void call(Tuple t);
}