Skip to content

Commit

Permalink
Move "+" sign to the start of the line.
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarguindzberg committed Feb 7, 2018
1 parent 235297f commit fa97c99
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,17 +210,17 @@ public int hashCode() {

@Override
public String toString() {
return "Log{" +
"removed=" + removed +
", logIndex='" + logIndex + '\'' +
", transactionIndex='" + transactionIndex + '\'' +
", transactionHash='" + transactionHash + '\'' +
", blockHash='" + blockHash + '\'' +
", blockNumber='" + blockNumber + '\'' +
", address='" + address + '\'' +
", data='" + data + '\'' +
", type='" + type + '\'' +
", topics=" + topics +
'}';
return "Log{"
+ "removed=" + removed
+ ", logIndex='" + logIndex + '\''
+ ", transactionIndex='" + transactionIndex + '\''
+ ", transactionHash='" + transactionHash + '\''
+ ", blockHash='" + blockHash + '\''
+ ", blockNumber='" + blockNumber + '\''
+ ", address='" + address + '\''
+ ", data='" + data + '\''
+ ", type='" + type + '\''
+ ", topics=" + topics
+ '}';
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -252,20 +252,20 @@ public int hashCode() {

@Override
public String toString() {
return "TransactionReceipt{" +
"transactionHash='" + transactionHash + '\'' +
", transactionIndex='" + transactionIndex + '\'' +
", blockHash='" + blockHash + '\'' +
", blockNumber='" + blockNumber + '\'' +
", cumulativeGasUsed='" + cumulativeGasUsed + '\'' +
", gasUsed='" + gasUsed + '\'' +
", contractAddress='" + contractAddress + '\'' +
", root='" + root + '\'' +
", status='" + status + '\'' +
", from='" + from + '\'' +
", to='" + to + '\'' +
", logs=" + logs +
", logsBloom='" + logsBloom + '\'' +
'}';
return "TransactionReceipt{"
+ "transactionHash='" + transactionHash + '\''
+ ", transactionIndex='" + transactionIndex + '\''
+ ", blockHash='" + blockHash + '\''
+ ", blockNumber='" + blockNumber + '\''
+ ", cumulativeGasUsed='" + cumulativeGasUsed + '\''
+ ", gasUsed='" + gasUsed + '\''
+ ", contractAddress='" + contractAddress + '\''
+ ", root='" + root + '\''
+ ", status='" + status + '\''
+ ", from='" + from + '\''
+ ", to='" + to + '\''
+ ", logs=" + logs
+ ", logsBloom='" + logsBloom + '\''
+ '}';
}
}

0 comments on commit fa97c99

Please sign in to comment.