summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/rwcarlsen
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/rwcarlsen')
-rw-r--r--Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/example_test.go2
-rw-r--r--Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/exif.go4
-rw-r--r--Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/exif_test.go2
-rw-r--r--Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/regen_regress.go4
4 files changed, 6 insertions, 6 deletions
diff --git a/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/example_test.go b/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/example_test.go
index dd99da6db..45fd5d4ad 100644
--- a/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/example_test.go
+++ b/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/example_test.go
@@ -5,7 +5,7 @@ import (
"log"
"os"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif"
+ "github.com/rwcarlsen/goexif/exif"
"github.com/rwcarlsen/goexif/mknote"
)
diff --git a/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/exif.go b/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/exif.go
index b24793a3c..b420729da 100644
--- a/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/exif.go
+++ b/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/exif.go
@@ -16,7 +16,7 @@ import (
"strings"
"time"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/rwcarlsen/goexif/tiff"
+ "github.com/rwcarlsen/goexif/tiff"
)
const (
@@ -574,7 +574,7 @@ func newAppSec(marker byte, r io.Reader) (*appSec, error) {
}
dataLenBytes := make([]byte, 2)
- for k, _ := range dataLenBytes {
+ for k,_ := range dataLenBytes {
c, err := br.ReadByte()
if err != nil {
return nil, err
diff --git a/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/exif_test.go b/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/exif_test.go
index 70dad6009..c53f1ddda 100644
--- a/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/exif_test.go
+++ b/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/exif_test.go
@@ -12,7 +12,7 @@ import (
"strings"
"testing"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/rwcarlsen/goexif/tiff"
+ "github.com/rwcarlsen/goexif/tiff"
)
var dataDir = flag.String("test_data_dir", ".", "Directory where the data files for testing are located")
diff --git a/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/regen_regress.go b/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/regen_regress.go
index 52fb2dd08..17bac5287 100644
--- a/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/regen_regress.go
+++ b/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif/regen_regress.go
@@ -11,8 +11,8 @@ import (
"path/filepath"
"strings"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/rwcarlsen/goexif/exif"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/rwcarlsen/goexif/tiff"
+ "github.com/rwcarlsen/goexif/exif"
+ "github.com/rwcarlsen/goexif/tiff"
)
func main() {