util -> utils

This commit is contained in:
LoveSy 2023-01-06 10:29:13 +08:00 committed by LoveSy
parent a691abc510
commit 0625839b42
5 changed files with 5 additions and 7 deletions

View File

@ -67,7 +67,7 @@ import de.robv.android.xposed.XposedInit;
import io.github.libxposed.XposedContext; import io.github.libxposed.XposedContext;
import io.github.libxposed.XposedModule; import io.github.libxposed.XposedModule;
import io.github.libxposed.XposedModuleInterface; import io.github.libxposed.XposedModuleInterface;
import io.github.libxposed.util.DexParser; import io.github.libxposed.utils.DexParser;
public class LSPosedContext extends XposedContext { public class LSPosedContext extends XposedContext {

View File

@ -10,7 +10,7 @@ import java.nio.ByteBuffer;
import java.util.concurrent.locks.ReadWriteLock; import java.util.concurrent.locks.ReadWriteLock;
import java.util.concurrent.locks.ReentrantReadWriteLock; import java.util.concurrent.locks.ReentrantReadWriteLock;
import io.github.libxposed.util.DexParser; import io.github.libxposed.utils.DexParser;
public class LSPosedDexParser implements DexParser { public class LSPosedDexParser implements DexParser {
ReadWriteLock lock = new ReentrantReadWriteLock(); ReadWriteLock lock = new ReentrantReadWriteLock();

View File

@ -11,7 +11,7 @@ import java.lang.reflect.Constructor;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
import io.github.libxposed.util.DexParser; import io.github.libxposed.utils.DexParser;
public class XposedContextWrapper extends ContextWrapper implements XposedInterface { public class XposedContextWrapper extends ContextWrapper implements XposedInterface {

View File

@ -10,7 +10,7 @@ import java.lang.reflect.Method;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
import java.util.ConcurrentModificationException; import java.util.ConcurrentModificationException;
import io.github.libxposed.util.DexParser; import io.github.libxposed.utils.DexParser;
public interface XposedInterface { public interface XposedInterface {
int API = 100; int API = 100;

View File

@ -1,10 +1,8 @@
package io.github.libxposed.util; package io.github.libxposed.utils;
import androidx.annotation.NonNull; import androidx.annotation.NonNull;
import androidx.annotation.Nullable; import androidx.annotation.Nullable;
import java.nio.ByteBuffer;
public interface DexParser extends AutoCloseable { public interface DexParser extends AutoCloseable {
int NO_INDEX = 0xffffffff; int NO_INDEX = 0xffffffff;