Browse Source

check for nil

Darien Raymond 8 years ago
parent
commit
07866e6d39
1 changed files with 6 additions and 0 deletions
  1. 6 0
      app/space.go

+ 6 - 0
app/space.go

@@ -72,11 +72,17 @@ func (v *spaceImpl) Initialize() error {
 }
 
 func (v *spaceImpl) GetApplication(appInterface interface{}) Application {
+	if v == nil {
+		return nil
+	}
 	appType := reflect.TypeOf(appInterface)
 	return v.cache[appType]
 }
 
 func (v *spaceImpl) AddApplication(app Application) error {
+	if v == nil {
+		return errors.New("App: Nil space.")
+	}
 	appType := reflect.TypeOf(app.Interface())
 	v.cache[appType] = app
 	return nil