Small URL fix (#8297)

Signed-off-by: AlexDBlack <blacka101@gmail.com>
master
Alex Black 2019-10-18 11:25:58 +11:00 committed by GitHub
parent b9a4b0f25f
commit 7f06df5826
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ public class KuromojiBinFilesFetcher {
File tarFile = new File(rootDir, "kuromoji_bin_files.tar.gz");
if (!tarFile.isFile()) {
FileUtils.copyURLToFile(
new URL("https://dhkuromoji.blob.core.windows.net/kuromoji/kuromoji_bin_files.tar.gz"),
new URL("https://dl4jdata.blob.core.windows.net/kuromoji/kuromoji_bin_files.tar.gz"),
tarFile);
}
ArchiveUtils.unzipFileTo(tarFile.getAbsolutePath(), rootDir.getAbsolutePath());