public boolean equals()

in common/src/main/java/jetbrains/buildServer/torrent/seeder/TorrentFilesDB.java [240:247]


    public boolean equals(Object o) {
      if (this == o) return true;
      if (o == null || getClass() != o.getClass()) return false;

      FileInfo fileInfo = (FileInfo) o;

      return myPath.equals(fileInfo.myPath);
    }