mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-01-09 00:59:44 +03:00
[FIX] Права интерфейсов в JarHelper.
This commit is contained in:
parent
67f1dcf5f9
commit
807517f038
1 changed files with 2 additions and 2 deletions
|
@ -9,12 +9,12 @@
|
||||||
|
|
||||||
public class JarHelper {
|
public class JarHelper {
|
||||||
@FunctionalInterface
|
@FunctionalInterface
|
||||||
interface ZipWalkCallback
|
public interface ZipWalkCallback
|
||||||
{
|
{
|
||||||
void process(ZipInputStream input, ZipEntry e);
|
void process(ZipInputStream input, ZipEntry e);
|
||||||
}
|
}
|
||||||
@FunctionalInterface
|
@FunctionalInterface
|
||||||
interface JarWalkCallback
|
public interface JarWalkCallback
|
||||||
{
|
{
|
||||||
void process(ZipInputStream input, ZipEntry e, String fullClassName, String clazz);
|
void process(ZipInputStream input, ZipEntry e, String fullClassName, String clazz);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue