schema: unexport NewBytes

Change-Id: Ia6ec7c9aec33319bf277b93a189b4fa43d0540b9
This commit is contained in:
Brad Fitzpatrick 2012-08-22 04:32:58 +10:00
parent 439db110ec
commit a8629ec5dd
2 changed files with 2 additions and 2 deletions

View File

@ -241,7 +241,7 @@ func WriteFileMapRolling(bs blobserver.StatReceiver, fileMap Map, r io.Reader) (
}
m := fileMap
if isFragment {
m = NewBytes()
m = newBytes()
}
err = PopulateParts(m, fileSize, parts)
if err != nil {

View File

@ -539,7 +539,7 @@ func PopulateSymlinkMap(m Map, fileName string) error {
return nil
}
func NewBytes() Map {
func newBytes() Map {
return newMap(1, "bytes")
}