summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/golang.org/x
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/golang.org/x')
-rw-r--r--Godeps/_workspace/src/golang.org/x/crypto/bcrypt/bcrypt.go2
-rw-r--r--Godeps/_workspace/src/golang.org/x/image/font/basicfont/basicfont.go2
-rw-r--r--Godeps/_workspace/src/golang.org/x/image/font/basicfont/gen.go6
-rw-r--r--Godeps/_workspace/src/golang.org/x/image/font/font.go2
-rw-r--r--Godeps/_workspace/src/golang.org/x/image/font/plan9font/example_test.go6
-rw-r--r--Godeps/_workspace/src/golang.org/x/image/font/plan9font/plan9font.go4
-rw-r--r--Godeps/_workspace/src/golang.org/x/image/tiff/reader.go2
7 files changed, 12 insertions, 12 deletions
diff --git a/Godeps/_workspace/src/golang.org/x/crypto/bcrypt/bcrypt.go b/Godeps/_workspace/src/golang.org/x/crypto/bcrypt/bcrypt.go
index aa50fdc61..b8e18d744 100644
--- a/Godeps/_workspace/src/golang.org/x/crypto/bcrypt/bcrypt.go
+++ b/Godeps/_workspace/src/golang.org/x/crypto/bcrypt/bcrypt.go
@@ -12,7 +12,7 @@ import (
"crypto/subtle"
"errors"
"fmt"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/crypto/blowfish"
+ "golang.org/x/crypto/blowfish"
"io"
"strconv"
)
diff --git a/Godeps/_workspace/src/golang.org/x/image/font/basicfont/basicfont.go b/Godeps/_workspace/src/golang.org/x/image/font/basicfont/basicfont.go
index 8875bd1cc..7eae19c8b 100644
--- a/Godeps/_workspace/src/golang.org/x/image/font/basicfont/basicfont.go
+++ b/Godeps/_workspace/src/golang.org/x/image/font/basicfont/basicfont.go
@@ -10,7 +10,7 @@ package basicfont
import (
"image"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "golang.org/x/image/math/fixed"
)
// Range maps a contiguous range of runes to vertically adjacent sub-images of
diff --git a/Godeps/_workspace/src/golang.org/x/image/font/basicfont/gen.go b/Godeps/_workspace/src/golang.org/x/image/font/basicfont/gen.go
index 4efb03322..67a21a74a 100644
--- a/Godeps/_workspace/src/golang.org/x/image/font/basicfont/gen.go
+++ b/Godeps/_workspace/src/golang.org/x/image/font/basicfont/gen.go
@@ -18,9 +18,9 @@ import (
"path"
"path/filepath"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font/plan9font"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "golang.org/x/image/font"
+ "golang.org/x/image/font/plan9font"
+ "golang.org/x/image/math/fixed"
)
func main() {
diff --git a/Godeps/_workspace/src/golang.org/x/image/font/font.go b/Godeps/_workspace/src/golang.org/x/image/font/font.go
index 1eae5c7ab..de8802fcc 100644
--- a/Godeps/_workspace/src/golang.org/x/image/font/font.go
+++ b/Godeps/_workspace/src/golang.org/x/image/font/font.go
@@ -14,7 +14,7 @@ import (
"image/draw"
"io"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "golang.org/x/image/math/fixed"
)
// TODO: who is responsible for caches (glyph images, glyph indices, kerns)?
diff --git a/Godeps/_workspace/src/golang.org/x/image/font/plan9font/example_test.go b/Godeps/_workspace/src/golang.org/x/image/font/plan9font/example_test.go
index 1114fd7d2..c1eacb230 100644
--- a/Godeps/_workspace/src/golang.org/x/image/font/plan9font/example_test.go
+++ b/Godeps/_workspace/src/golang.org/x/image/font/plan9font/example_test.go
@@ -13,9 +13,9 @@ import (
"path"
"path/filepath"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font/plan9font"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "golang.org/x/image/font"
+ "golang.org/x/image/font/plan9font"
+ "golang.org/x/image/math/fixed"
)
func ExampleParseFont() {
diff --git a/Godeps/_workspace/src/golang.org/x/image/font/plan9font/plan9font.go b/Godeps/_workspace/src/golang.org/x/image/font/plan9font/plan9font.go
index 705258c3b..9c686b776 100644
--- a/Godeps/_workspace/src/golang.org/x/image/font/plan9font/plan9font.go
+++ b/Godeps/_workspace/src/golang.org/x/image/font/plan9font/plan9font.go
@@ -21,8 +21,8 @@ import (
"strconv"
"strings"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "golang.org/x/image/font"
+ "golang.org/x/image/math/fixed"
)
// fontchar describes one character glyph in a subfont.
diff --git a/Godeps/_workspace/src/golang.org/x/image/tiff/reader.go b/Godeps/_workspace/src/golang.org/x/image/tiff/reader.go
index 651fa8026..714e3dda7 100644
--- a/Godeps/_workspace/src/golang.org/x/image/tiff/reader.go
+++ b/Godeps/_workspace/src/golang.org/x/image/tiff/reader.go
@@ -17,7 +17,7 @@ import (
"io/ioutil"
"math"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/tiff/lzw"
+ "golang.org/x/image/tiff/lzw"
)
// A FormatError reports that the input is not a valid TIFF image.