mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 14:55:41 +02:00
Corrected comments
This commit is contained in:
parent
d50bf482b2
commit
83b89115bf
1 changed files with 9 additions and 10 deletions
|
@ -169,9 +169,9 @@ public class SyncVariableDataAccess {
|
|||
session.getExecutor().execute(query);
|
||||
|
||||
/*
|
||||
* Now we have the data, go and get it. Since the call is completed now
|
||||
* the ".get()" will not suspend it will immediately return with the
|
||||
* data.
|
||||
* This class is about synchronous access to the variable, so wait until
|
||||
* the query has completed on the DSF session thread and return the
|
||||
* result.
|
||||
*/
|
||||
try {
|
||||
return query.get();
|
||||
|
@ -260,9 +260,8 @@ public class SyncVariableDataAccess {
|
|||
session.getExecutor().execute(query);
|
||||
|
||||
/*
|
||||
* Now we have the data, go and get it. Since the call is completed now
|
||||
* the ".get()" will not suspend it will immediately return with the
|
||||
* data.
|
||||
* This class is about synchronous access to the variable, so wait until
|
||||
* the query has completed on the DSF session thread.
|
||||
*/
|
||||
try {
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue