mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
Style nit.
This commit is contained in:
parent
7df4500024
commit
644d45106e
@ -2,17 +2,19 @@ package org.retroarch.browser;
|
||||
|
||||
public final class AssetExtractor {
|
||||
final private String archive;
|
||||
|
||||
public AssetExtractor(String archive) {
|
||||
this.archive = archive;
|
||||
}
|
||||
|
||||
|
||||
static {
|
||||
System.loadLibrary("apk-extract");
|
||||
}
|
||||
|
||||
|
||||
public boolean extractTo(String subDirectory, String destinationFolder) {
|
||||
return extractArchiveTo(archive, subDirectory, destinationFolder);
|
||||
}
|
||||
|
||||
private static native boolean extractArchiveTo(String archive, String subDirectory, String destinationFolder);
|
||||
|
||||
private static native boolean extractArchiveTo(String archive,
|
||||
String subDirectory, String destinationFolder);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user