From bde32e964f10a6e0886a062b0b372fc348f19d08 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 24 Mar 2013 16:41:58 -0700 Subject: [PATCH] Alphabetize --- packer/environment.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packer/environment.go b/packer/environment.go index 0cfc93fab..e311c093a 100644 --- a/packer/environment.go +++ b/packer/environment.go @@ -76,12 +76,6 @@ func (e *Environment) Cli(args []string) int { return command.Run(e, args) } -// Returns the UI for the environment. The UI is the interface that should -// be used for all communication with the outside world. -func (e *Environment) Ui() Ui { - return e.ui -} - // Prints the CLI help to the UI. func (e *Environment) PrintHelp() { // Created a sorted slice of the map keys and record the longest @@ -113,3 +107,9 @@ func (e *Environment) PrintHelp() { e.ui.Say(" %v %v\n", key, command.Synopsis()) } } + +// Returns the UI for the environment. The UI is the interface that should +// be used for all communication with the outside world. +func (e *Environment) Ui() Ui { + return e.ui +}