From 755a781502e74cc55d1c7ca92593c64bb68504cd Mon Sep 17 00:00:00 2001 From: Klaus Post Date: Fri, 19 Jun 2015 17:27:22 +0200 Subject: [PATCH] Remove unused types. --- reedsolomon.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/reedsolomon.go b/reedsolomon.go index 0beb8f2..71f1401 100644 --- a/reedsolomon.go +++ b/reedsolomon.go @@ -21,9 +21,6 @@ type ReedSolomon struct { parity [][]byte } -type Shard []byte -type Shards []Shard - func New(dataShardCount, parityShardCount int) (*ReedSolomon, error) { r := ReedSolomon{ DataShardCount: dataShardCount,