Skip to content

Commit

Permalink
Remove needless return value
Browse files Browse the repository at this point in the history
  • Loading branch information
fbennett committed Apr 8, 2018
1 parent 688f915 commit 5e4c641
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions chrome/content/zotero/xpcom/data/relations.js
Expand Up @@ -160,8 +160,7 @@ Zotero.Relations = new function () {
toReturn.push({
subject: yield objectsClass.getAsync(subjectID),
predicate: Zotero.RelationPredicates.getName(predicateID)
})
return toReturn;
});
}));
}
return toReturn;
Expand Down

0 comments on commit 5e4c641

Please sign in to comment.