override fun equals()

in sdkcompat/v252/org/jetbrains/bazel/sdkcompat/workspacemodel/entities/impl/BazelProjectDirectoriesEntityImpl.kt [319:332]


  override fun equals(other: Any?): Boolean {
    if (other == null) return false
    if (this.javaClass != other.javaClass) return false

    other as BazelProjectDirectoriesEntityData

    if (this.entitySource != other.entitySource) return false
    if (this.projectRoot != other.projectRoot) return false
    if (this.includedRoots != other.includedRoots) return false
    if (this.excludedRoots != other.excludedRoots) return false
    if (this.indexAllFilesInIncludedRoots != other.indexAllFilesInIncludedRoots) return false
    if (this.indexAdditionalFiles != other.indexAdditionalFiles) return false
    return true
  }