Skip to content

Commit 1fa264a

Browse files
committedJan 24, 2016
src: Remove no longer relevant comments
1 parent 96934cb commit 1fa264a

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed
 

‎src/debug-agent.cc

-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,6 @@ void Agent::ChildSignalCb(uv_async_t* signal) {
285285
}
286286

287287
// Waiting for client, do not send anything just yet
288-
// TODO(indutny): move this to js-land
289288
if (a->wait_) {
290289
a->messages_.PushFront(msg); // Push message back into the ready queue.
291290
break;

‎src/debug-agent.h

-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ class Agent {
109109
kRunning
110110
};
111111

112-
// TODO(indutny): Verify that there are no races
113112
State state_;
114113

115114
int port_;

‎src/node_crypto.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -5168,7 +5168,7 @@ void PBKDF2(const FunctionCallbackInfo<Value>& args) {
51685168

51695169
if (args[5]->IsFunction()) {
51705170
obj->Set(env->ondone_string(), args[5]);
5171-
// XXX(trevnorris): This will need to go with the rest of domains.
5171+
51725172
if (env->in_domain())
51735173
obj->Set(env->domain_string(), env->domain_array()->Get(0));
51745174
uv_queue_work(env->event_loop(),
@@ -5329,7 +5329,7 @@ void RandomBytes(const FunctionCallbackInfo<Value>& args) {
53295329

53305330
if (args[1]->IsFunction()) {
53315331
obj->Set(FIXED_ONE_BYTE_STRING(args.GetIsolate(), "ondone"), args[1]);
5332-
// XXX(trevnorris): This will need to go with the rest of domains.
5332+
53335333
if (env->in_domain())
53345334
obj->Set(env->domain_string(), env->domain_array()->Get(0));
53355335
uv_queue_work(env->event_loop(),

0 commit comments

Comments
 (0)
Please sign in to comment.