override fun equalsIgnoringEntitySource()

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


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

    other as BazelProjectDirectoriesEntityData

    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
  }