diff options
author | 6543 <6543@obermui.de> | 2021-04-09 09:40:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 09:40:34 +0200 |
commit | 9c4601bdf8369ed72944085e3952111cf4aeea11 (patch) | |
tree | 2dcadaabed6dbe14ddba2d2513b736ff6b7f089f /modules/setting/setting.go | |
parent | 0991f9aa427ab923544c35d73232fa53c9db9120 (diff) | |
download | gitea-9c4601bdf8369ed72944085e3952111cf4aeea11.tar.gz gitea-9c4601bdf8369ed72944085e3952111cf4aeea11.zip |
Code Formats, Nits & Unused Func/Var deletions (#15286)
* _ to unused func options
* rm useless brakets
* rm trifial non used models functions
* rm dead code
* rm dead global vars
* fix routers/api/v1/repo/issue.go
* dont overload import module
Diffstat (limited to 'modules/setting/setting.go')
-rw-r--r-- | modules/setting/setting.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 280987ed66..f609edba17 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -318,7 +318,6 @@ var ( LogRootPath string DisableRouterLog bool RouterLogLevel log.Level - RouterLogMode string EnableAccessLog bool AccessLogTemplate string EnableXORMLog bool @@ -408,10 +407,6 @@ var ( IsWindows bool HasRobotsTxt bool InternalToken string // internal access token - - // UILocation is the location on the UI, so that we can display the time on UI. - // Currently only show the default time.Local, it could be added to app.ini after UI is ready - UILocation = time.Local ) // IsProd if it's a production mode |