Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
cgewecke committed May 24, 2024
1 parent 5b183e2 commit 1826528
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/collector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export class Collector {
* @return {Boolean}
*/
private _isProxied(name: string | null, input: string): boolean {
if (name !== null ) {
if (name !== null) {
return (this.data.methods[getMethodID(name, input)] === undefined)
}
return false;
Expand Down
2 changes: 1 addition & 1 deletion test/projects/options/test/factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ describe("Factory deployment: different contract / same method name", function (
await versionA.setValue();
await versionB.setValue();
});
});
});

0 comments on commit 1826528

Please sign in to comment.