What does having a function argument inside parenthesis by itself do in a Solidity contract?
For example, in the contract found here, on lines 84-86, the function's arguments _from, _value, and _data are each on their own line inside parenthesis. And then _amount is on its own line on line 91.
contract UserWallet {
...
function tokenFallback(address _from, uint _value, bytes _data) {
(_from);
(_value);
(_data);
}
function sweep(address _token, uint _amount)
returns (bool) {
(_amount);
return sweeperList.sweeperOf(_token).delegatecall(msg.data);
}
}