# File lib/zip/zip.rb, line 719
    def == (other)
      return false unless other.class == self.class
      # Compares contents of local entry and exposed fields
      (@compression_method == other.compression_method &&
       @crc               == other.crc               &&
       @compressed_size   == other.compressed_size   &&
       @size              == other.size              &&
       @name              == other.name              &&
       @extra             == other.extra             &&
       @filepath          == other.filepath          &&
       self.time.dos_equals(other.time))
    end