mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
Remove some synchronization primitives.
This commit is contained in:
parent
9f6e4f8db6
commit
8911cb0c81
1 changed files with 4 additions and 4 deletions
|
@ -203,19 +203,19 @@ public class MIInferior extends Process {
|
|||
}
|
||||
}
|
||||
|
||||
public synchronized boolean isSuspended() {
|
||||
public boolean isSuspended() {
|
||||
return state == SUSPENDED;
|
||||
}
|
||||
|
||||
public synchronized boolean isRunning() {
|
||||
public boolean isRunning() {
|
||||
return state == RUNNING;
|
||||
}
|
||||
|
||||
public synchronized boolean isTerminated() {
|
||||
public boolean isTerminated() {
|
||||
return state == TERMINATED;
|
||||
}
|
||||
|
||||
public synchronized boolean isConnected() {
|
||||
public boolean isConnected() {
|
||||
return connected;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue