diff options
author | Ryan Cobb <rcobb@gitlab.com> | 2019-07-11 18:25:43 +0000 |
---|---|---|
committer | Mayra Cabrera <mcabrera@gitlab.com> | 2019-07-11 18:25:43 +0000 |
commit | 8f07620bc12e35683847740f5a9993c29083a24b (patch) | |
tree | decee40aed6478ecf8db52856a5797eb79a74081 | |
parent | 03756a312bea2966d9f6ff26c798679fff87d731 (diff) | |
download | gitlab-ce-8f07620bc12e35683847740f5a9993c29083a24b.tar.gz |
Remove unused method
-rw-r--r-- | lib/gitlab/metrics/system.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/gitlab/metrics/system.rb b/lib/gitlab/metrics/system.rb index 5c2f07b95e2..51f48095cb5 100644 --- a/lib/gitlab/metrics/system.rb +++ b/lib/gitlab/metrics/system.rb @@ -63,10 +63,6 @@ module Gitlab def self.monotonic_time Process.clock_gettime(Process::CLOCK_MONOTONIC, :float_second) end - - def self.clk_tck - @clk_tck ||= `getconf CLK_TCK`.to_i - end end end end |