lib/taskjuggler/FileList.rb in taskjuggler-3.7.1 vs lib/taskjuggler/FileList.rb in taskjuggler-3.7.2

- old
+ new

@@ -15,10 +15,10 @@ # The FileRecord stores the name of a file and the modification time. class FileRecord def initialize(fileName) - @name = fileName.dup.untaint + @name = fileName.dup @mtime = File.mtime(@name) end def modified? File.mtime(@name) > @mtime