Skip to content

Commit

Permalink
Merge pull request ethereum#876 from scottw-smartsheet/remove-dead-co…
Browse files Browse the repository at this point in the history
…de-from-ByteUtil

Remove dead code from byte util
  • Loading branch information
mkalinin authored Mar 14, 2018
2 parents 4feb9bb + 4167239 commit 5843205
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ethereumj-core/src/main/java/org/ethereum/util/ByteUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -504,11 +504,9 @@ public static byte[] xorAlignRight(byte[] b1, byte[] b2) {
*/
public static byte[] merge(byte[]... arrays)
{
int arrCount = 0;
int count = 0;
for (byte[] array: arrays)
{
arrCount++;
count += array.length;
}

Expand Down

0 comments on commit 5843205

Please sign in to comment.