All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avito.impact.changes.ChangedFile.kt Maven / Gradle / Ivy

Go to download

Collection of infrastructure libraries and gradle plugins of Avito Android project

The newest version!
package com.avito.impact.changes

import java.io.File

public data class ChangedFile(
    val rootDir: File,
    val file: File,
    val changeType: ChangeType
) {

    init {
        require(file.startsWith(rootDir)) { "File $file must be within $rootDir" }
    }

    public val relativePath: String = file.toRelativeString(rootDir)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy