Browse Source

Fix solint errors

Facundo Spagnuolo 7 years ago
parent
commit
af337047a4
2 changed files with 8 additions and 7 deletions
  1. 1 1
      contracts/mocks/ERC721TokenMock.sol
  2. 7 6
      contracts/token/ERC721Token.sol

+ 1 - 1
contracts/mocks/ERC721TokenMock.sol

@@ -1,6 +1,6 @@
 pragma solidity ^0.4.18;
 
-import '../token/ERC721Token.sol';
+import "../token/ERC721Token.sol";
 
 /**
  * @title ERC721TokenMock

+ 7 - 6
contracts/token/ERC721Token.sol

@@ -1,7 +1,7 @@
 pragma solidity ^0.4.18;
 
-import './ERC721.sol';
-import '../math/SafeMath.sol';
+import "./ERC721.sol";
+import "../math/SafeMath.sol";
 
 /**
  * @title ERC721Token
@@ -97,9 +97,10 @@ contract ERC721Token is ERC721 {
   function approve(address _to, uint256 _tokenId) public onlyOwnerOf(_tokenId) {
     address owner = ownerOf(_tokenId);
     require(_to != owner);
-    if(approvedFor(_tokenId) == 0 && _to == 0) return;
-    tokenApprovals[_tokenId] = _to;
-    Approval(owner, _to, _tokenId);
+    if (approvedFor(_tokenId) != 0 || _to != 0) {
+      tokenApprovals[_tokenId] = _to;
+      Approval(owner, _to, _tokenId);
+    }
   }
 
   /**
@@ -127,7 +128,7 @@ contract ERC721Token is ERC721 {
   * @param _tokenId uint256 ID of the token being burned by the msg.sender
   */
   function burn(uint256 _tokenId) onlyOwnerOf(_tokenId) internal {
-    if(approvedFor(_tokenId) != 0) {
+    if (approvedFor(_tokenId) != 0) {
       clearApproval(msg.sender, _tokenId);
     }
     removeToken(msg.sender, _tokenId);