Skip to content

Commit 3d35b9c

Browse files
committed
style: merge split variable declaration onto one line
1 parent fa8e5d0 commit 3d35b9c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/inspector/network_agent.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,7 @@ static std::unique_ptr<protocol::Value> V8ToProtocolValue(
8989
// `property_names` is a JSArray returned from GetOwnPropertyNames, so
9090
// indexed access always succeeds. User-defined getters can still throw
9191
// when reading the property value, which is what we guard against.
92-
Local<Value> key =
93-
property_names->Get(context, i).ToLocalChecked();
92+
Local<Value> key = property_names->Get(context, i).ToLocalChecked();
9493
Local<Value> property;
9594
if (!GetProperty(context, object, key).ToLocal(&property)) {
9695
return nullptr;

0 commit comments

Comments
 (0)