Skip to content

Commit

Permalink
snaploader-examples: applied DirectoryPath API changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pavly-gerges committed Aug 6, 2024
1 parent 4a648f3 commit dd25fb8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ protected static String getJarFilePath() {
}

protected static String getNativeDynamicLibraryPath() {
return getLibrariesAbsolutePath() +
return getLibrariesAbsolutePath().getPath() +
PropertiesProvider.FILE_SEPARATOR.getSystemProperty() +
"lib" + getLibraryBaseName() + ".so";
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ public void onExtractionFinalization(FileExtractor fileExtractor, FileLocator fi
}

protected static String getZipAbsolutePath() {
return TestBasicFeatures.getLibrariesAbsolutePath() +
return TestBasicFeatures.getLibrariesAbsolutePath().getPath() +
PropertiesProvider.FILE_SEPARATOR.getSystemProperty() + "jmelogo700.zip";
}

protected static String getExtractionPath() {
return TestBasicFeatures.getLibrariesAbsolutePath() +
return TestBasicFeatures.getLibrariesAbsolutePath().getPath() +
PropertiesProvider.FILE_SEPARATOR.getSystemProperty() + getFilePath();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ public void onExtractionFinalization(FileExtractor fileExtractor, FileLocator fi
}

protected static String getZipAbsolutePath() {
return TestBasicFeatures.getLibrariesAbsolutePath() +
return TestBasicFeatures.getLibrariesAbsolutePath().getPath() +
PropertiesProvider.FILE_SEPARATOR.getSystemProperty() + "jmelogo700.zip";
}

protected static String getExtractionPath() {
return TestBasicFeatures.getLibrariesAbsolutePath() +
return TestBasicFeatures.getLibrariesAbsolutePath().getPath() +
PropertiesProvider.FILE_SEPARATOR.getSystemProperty() + getFilePath();
}

Expand Down

0 comments on commit dd25fb8

Please sign in to comment.