Home
last modified time | relevance | path

Searched refs:licenseFileInput (Results 1 – 1 of 1) sorted by relevance

/packages/modules/GeoTZ/common/host/main/java/com/android/timezone/location/common/
DLicenseSupport.java87 File licenseFileInput = new File(inputDir, LICENSE_FILE_NAME); in copyLicenseFile() local
88 if (!licenseFileInput.exists()) { in copyLicenseFile()
89 throw new IllegalArgumentException(licenseFileInput + " does not exist"); in copyLicenseFile()
95 checkFilesIdentical(licenseFileInput, licenseOutputFile); in copyLicenseFile()
98 "Copying LICENSE from " + licenseFileInput + " to " + licenseOutputFile); in copyLicenseFile()
99 Files.copy(licenseFileInput.toPath(), licenseOutputFile.toPath()); in copyLicenseFile()