# File lib/simplecov/jruby_float_fix.rb, line 5
    def round(precision = nil)
      if precision
        magnitude = 10.0 ** precision
        (self * magnitude).round / magnitude
      else
        precisionless_round
      end
    end