diff options
Diffstat (limited to 'devtools/shared/protocol/Actor.js')
-rw-r--r-- | devtools/shared/protocol/Actor.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/devtools/shared/protocol/Actor.js b/devtools/shared/protocol/Actor.js index ea37f6fea2..bb8282335f 100644 --- a/devtools/shared/protocol/Actor.js +++ b/devtools/shared/protocol/Actor.js @@ -93,11 +93,9 @@ class Actor extends Pool { /** * Override this method in subclasses to serialize the actor. - * @param [optional] string hint - * Optional string to customize the form. * @returns A jsonable object. */ - form(hint) { + form() { return { actor: this.actorID }; } |