From 031f587421a520be1bcbb39a6361888d5e7d5d27 Mon Sep 17 00:00:00 2001 From: antisnatchor Date: Mon, 27 Jul 2015 16:38:03 +0200 Subject: [PATCH] Removed fixed TODOs --- core/main/autorun_engine/engine.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/main/autorun_engine/engine.rb b/core/main/autorun_engine/engine.rb index 4f221c90a..fbfaac95b 100644 --- a/core/main/autorun_engine/engine.rb +++ b/core/main/autorun_engine/engine.rb @@ -86,7 +86,7 @@ module BeEF # Wraps module bodies in their own function, using setTimeout to trigger them with an eventual delay. - # Launch order is also taken care of (TODO execution is not nested right now, check if it should be changed)] + # Launch order is also taken care of. # - sequential chain with delays (setTimeout stuff) # ex.: setTimeout(module_one(), 0); # setTimeout(module_two(), 2000); @@ -110,7 +110,7 @@ module BeEF end # Wraps module bodies in their own function, using setTimeout to trigger them with an eventual delay. - # Launch order is also taken care of (TODO execution is not nested right now, check if it should be changed) + # Launch order is also taken care of. # - nested forward chain with status checks (setInterval to wait for command to return from async operations) # ex.: module_one() # if result == success