1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

signal calls target.signal().

This commit is contained in:
Alain Magloire 2003-02-04 19:14:41 +00:00
parent d728f602d0
commit af8b2f11ef

View file

@ -70,6 +70,6 @@ public class Signal extends CObject implements ICDISignal {
* Continue program giving it signal specified by the argument. * Continue program giving it signal specified by the argument.
*/ */
public void signal() throws CDIException { public void signal() throws CDIException {
mgr.signal(this); getTarget().signal(this);
} }
} }