aboutsummaryrefslogtreecommitdiff
path: root/binary/test/test_binary.go
diff options
context:
space:
mode:
authorIan Cottrell <iancottrell@google.com>2015-06-04 10:30:43 +0100
committerIan Cottrell <iancottrell@google.com>2015-06-05 10:46:52 +0100
commit613687438bc0e236db1838c4692b767cbd59660a (patch)
tree3a974fdd5bd15529b5789985e92e72a85d24508c /binary/test/test_binary.go
parentb0626fe11ee5d1d74c21ae0025e5a39df41f0d9e (diff)
downloadgpu-613687438bc0e236db1838c4692b767cbd59660a.tar.gz
Remove redundant types and empty var/init declarations
Change-Id: Ie72a0eea18d9bf4e45f439529ec29a16391b8a10
Diffstat (limited to 'binary/test/test_binary.go')
-rw-r--r--binary/test/test_binary.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/binary/test/test_binary.go b/binary/test/test_binary.go
index 8932618b7..80e803f84 100644
--- a/binary/test/test_binary.go
+++ b/binary/test/test_binary.go
@@ -65,7 +65,7 @@ var schemaTypeA = &schema.Class{
TypeID: TypeAID,
Name: "TypeA",
Fields: []schema.Field{
- schema.Field{Declared: "data", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "data", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}
@@ -113,6 +113,6 @@ var schemaTypeB = &schema.Class{
TypeID: TypeBID,
Name: "TypeB",
Fields: []schema.Field{
- schema.Field{Declared: "data", Type: &schema.Primitive{Name: "string", Method: schema.String}},
+ {Declared: "data", Type: &schema.Primitive{Name: "string", Method: schema.String}},
},
}