Ignore:
Timestamp:
Nov 12, 2009, 1:43:18 PM (14 years ago)
Author:
KOBAYASHI, Shinji
Message:

ref #55
time calculation is difficult

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ruby/branches/0.5/lib/open_ehr/assumed_library_types.rb

    r289 r343  
    583583        self.minutes = $13.to_i
    584584        self.seconds = $15.to_i
    585         self.fractional_second = $16.to_f
     585        unless $16.nil?
     586          self.fractional_second = $16.to_f
     587        end
    586588      end
    587589    end # end of ISO8601Duration
Note: See TracChangeset for help on using the changeset viewer.