Skip to content

Commit b90bf37

Browse files
cleanup
1 parent 73129ba commit b90bf37

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/PyIterableProxyHandler.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ bool PyIterableProxyHandler::getOwnPropertyDescriptor(
212212
JSContext *cx, JS::HandleObject proxy, JS::HandleId id,
213213
JS::MutableHandle<mozilla::Maybe<JS::PropertyDescriptor>> desc
214214
) const {
215-
216215
// see if we're calling a function
217216
if (id.isString()) {
218217
for (size_t index = 0;; index++) {
@@ -239,7 +238,6 @@ bool PyIterableProxyHandler::getOwnPropertyDescriptor(
239238
// "constructor" property
240239
bool isConstructorProperty;
241240
if (id.isString() && JS_StringEqualsLiteral(cx, id.toString(), "constructor", &isConstructorProperty) && isConstructorProperty) {
242-
//printf("PyIterableProxyHandler::handleGetOwnPropertyDescriptor constructor\n");
243241
JS::RootedObject global(cx, JS::GetNonCCWObjectGlobal(proxy));
244242

245243
JS::RootedObject rootedObjectPrototype(cx);

0 commit comments

Comments
 (0)