* turn off blank-lines rule
* remove triple newlines
(cherry picked from commit 9b37104655)
12 lines
204 B
Solidity
12 lines
204 B
Solidity
pragma solidity ^0.4.24;
|
|
|
|
import "../introspection/ERC165.sol";
|
|
|
|
contract ERC165Mock is ERC165 {
|
|
function registerInterface(bytes4 interfaceId)
|
|
public
|
|
{
|
|
_registerInterface(interfaceId);
|
|
}
|
|
}
|