aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server/src/main
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2011-09-07 14:09:09 +0200
committerSimon Brandhof <simon.brandhof@gmail.com>2011-09-07 14:09:09 +0200
commitf1b9f65a7fcef6667e3376d6d26b6595446c4bf8 (patch)
tree7d7bd1f51f948c211510e4a76ed03885295bf313 /sonar-server/src/main
parent89a8f7365bd9aa277e7acc55bf2b482486fff1dd (diff)
downloadsonarqube-f1b9f65a7fcef6667e3376d6d26b6595446c4bf8.tar.gz
sonarqube-f1b9f65a7fcef6667e3376d6d26b6595446c4bf8.zip
SONAR-2700 improve date format in System Info page
Diffstat (limited to 'sonar-server/src/main')
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/models/server.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/models/server.rb b/sonar-server/src/main/webapp/WEB-INF/app/models/server.rb
index bea432fd4bf..08bc8b4b847 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/models/server.rb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/models/server.rb
@@ -25,7 +25,7 @@ class Server
def system_info
system_info=[]
- add_property(system_info, 'System date') {format_date(java.util.Date.new())}
+ add_property(system_info, 'System date') {java.util.Date.new()}
add_property(system_info, 'JVM Vendor') {java.lang.management.ManagementFactory.getRuntimeMXBean().getVmVendor()}
add_property(system_info, 'JVM Name') {java.lang.management.ManagementFactory.getRuntimeMXBean().getVmName()}
add_property(system_info, 'JVM Version') {java.lang.management.ManagementFactory.getRuntimeMXBean().getVmVersion() }