Browse Source

Merge pull request #34 from smlrepo/master

revert versioned module using
Pierre Curto 7 years ago
parent
commit
1f6e18d34f
3 changed files with 3 additions and 5 deletions
  1. 1 1
      fuzz/lz4.go
  2. 1 1
      internal/xxh32/xxh32zero_test.go
  3. 1 3
      lz4c/main.go

+ 1 - 1
fuzz/lz4.go

@@ -4,7 +4,7 @@ import (
 	"bytes"
 	"io/ioutil"
 
-	lz4 "github.com/pierrec/lz4/v2"
+	"github.com/pierrec/lz4"
 )
 
 // lz4.Reader fuzz function

+ 1 - 1
internal/xxh32/xxh32zero_test.go

@@ -6,7 +6,7 @@ import (
 	"hash/fnv"
 	"testing"
 
-	"github.com/pierrec/lz4/v2/internal/xxh32"
+	"github.com/pierrec/lz4/internal/xxh32"
 )
 
 type test struct {

+ 1 - 3
lz4c/main.go

@@ -2,8 +2,6 @@
 package main
 
 import (
-	// 	"bytes"
-
 	"flag"
 	"fmt"
 	"io"
@@ -13,7 +11,7 @@ import (
 	"runtime"
 	"strings"
 
-	lz4 "github.com/pierrec/lz4/v2"
+	"github.com/pierrec/lz4"
 	"github.com/pkg/profile"
 )