Browse Source

Removed check for static template bundle file setting

Wirecog 6 years ago
parent
commit
3fb718a3cf
1 changed files with 0 additions and 5 deletions
  1. 0
    5
      uxcog.go

+ 0
- 5
uxcog.go View File

@@ -72,11 +72,6 @@ func (u *UXCog) CogInit(ts *isokit.TemplateSet) {
72 72
 	u.cogPrefixName = u.getCogPrefixName()
73 73
 
74 74
 	if isokit.OperatingEnvironment() == isokit.ServerEnvironment {
75
-
76
-		if isokit.UseStaticTemplateBundleFile == true && isokit.StaticTemplateBundleFileExists() == true {
77
-			return
78
-		}
79
-
80 75
 		u.RegisterCogTemplates()
81 76
 	}
82 77
 }