Remove override interface implementations (#4315)

Co-authored-by: Ernesto García <ernestognw@gmail.com>
This commit is contained in:
Renan Souza
2023-06-06 21:13:08 -03:00
committed by GitHub
parent 4fd2f8be33
commit df2778f38e
26 changed files with 99 additions and 118 deletions

View File

@ -21,7 +21,7 @@ abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}