Remove vestigial type parameter

This commit is contained in:
Tony Garnock-Jones 2024-04-24 22:14:07 +02:00
parent 27ab682bca
commit 0835077035
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ public class Actor extends ForkJoinTask<Void> {
return super.toString() + "(" + this._name + ")";
}
public<T> Ref ref(IEntity o) {
public Ref ref(IEntity o) {
return new Ref(this, o);
}