Browse Source

Remove redundant return.

Uriel 13 years ago
parent
commit
cb364fa519
1 changed files with 0 additions and 1 deletions
  1. 0 1
      geoip.go

+ 0 - 1
geoip.go

@@ -10,7 +10,6 @@ func setupGeoIP() *geoip.GeoIP {
 	gi := geoip.Open()
 	gi := geoip.Open()
 	if gi == nil {
 	if gi == nil {
 		log.Printf("Could not open GeoIP database\n")
 		log.Printf("Could not open GeoIP database\n")
-		return nil
 	}
 	}
 	return gi
 	return gi
 }
 }