mirror of https://github.com/docker/docs.git
Merge pull request #7165 from fcarriedo/remove-named-returns
pkg/units: Remove unused named returns
This commit is contained in:
commit
314bf61889
|
@ -61,7 +61,7 @@ func FromHumanSize(size string) (int64, error) {
|
||||||
// in bytes, kibibytes, mebibytes, gibibytes, or tebibytes and
|
// in bytes, kibibytes, mebibytes, gibibytes, or tebibytes and
|
||||||
// returns the number of bytes, or -1 if the string is unparseable.
|
// returns the number of bytes, or -1 if the string is unparseable.
|
||||||
// Units are case-insensitive, and the 'b' suffix is optional.
|
// Units are case-insensitive, and the 'b' suffix is optional.
|
||||||
func RAMInBytes(size string) (bytes int64, err error) {
|
func RAMInBytes(size string) (int64, error) {
|
||||||
re, error := regexp.Compile("^(\\d+)([kKmMgGtT])?[bB]?$")
|
re, error := regexp.Compile("^(\\d+)([kKmMgGtT])?[bB]?$")
|
||||||
if error != nil {
|
if error != nil {
|
||||||
return -1, error
|
return -1, error
|
||||||
|
|
Loading…
Reference in New Issue