1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 08:40:54 +00:00

code refactor

This commit is contained in:
JessonChan 2015-09-22 13:48:34 +08:00
parent 4995f91547
commit 9c17f73489

View File

@ -82,7 +82,6 @@ func serverStaticRouter(ctx *context.Context) {
}
if strings.HasSuffix(requestPath, "/index.html") {
if utils.FileExists(filePath) {
fileReader, err := os.Open(filePath)
if err != nil {
if RunMode == "dev" {
@ -95,7 +94,6 @@ func serverStaticRouter(ctx *context.Context) {
http.ServeContent(ctx.ResponseWriter, ctx.Request, filePath, fileInfo.ModTime(), fileReader)
return
}
}
isStaticFileToCompress := false
lowerFileName := strings.ToLower(filePath)