formatted code

This commit is contained in:
Pradyumna Kaushik 2018-02-02 17:07:23 -05:00
parent 435c4ca1bc
commit b58ffdbdd6
2 changed files with 3 additions and 3 deletions

View file

@ -21,7 +21,7 @@ type SchedWindowResizingStrategy interface {
// Scheduling window resizing strategy that attempts to resize the scheduling window // Scheduling window resizing strategy that attempts to resize the scheduling window
// to include as many tasks as possible so as to make the most use of the next offer cycle. // to include as many tasks as possible so as to make the most use of the next offer cycle.
type fillNextOfferCycle struct {} type fillNextOfferCycle struct{}
func (s *fillNextOfferCycle) Apply(getArgs func() interface{}) int { func (s *fillNextOfferCycle) Apply(getArgs func() interface{}) int {
return s.apply(getArgs().([]def.Task)) return s.apply(getArgs().([]def.Task))