Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/de/robv/android/xposed/XposedHelpers.java
Original file line number Diff line number Diff line change
Expand Up @@ -942,7 +942,7 @@ public static short getStaticShortField(Class<?> clazz, String fieldName) {
//#################################################################################################
/**
* Call instance or static method <code>methodName</code> for object <code>obj</code> with the arguments
* <code>args</code>. The types for the arguments will be determined automaticall from <code>args</code>
* <code>args</code>. The types for the arguments will be determined automatically from <code>args</code>
*/
public static Object callMethod(Object obj, String methodName, Object... args) {
try {
Expand Down Expand Up @@ -980,7 +980,7 @@ public static Object callMethod(Object obj, String methodName, Class<?>[] parame

/**
* Call static method <code>methodName</code> for class <code>clazz</code> with the arguments
* <code>args</code>. The types for the arguments will be determined automaticall from <code>args</code>
* <code>args</code>. The types for the arguments will be determined automatically from <code>args</code>
*/
public static Object callStaticMethod(Class<?> clazz, String methodName, Object... args) {
try {
Expand Down Expand Up @@ -1142,7 +1142,7 @@ public static Object removeAdditionalStaticField(Class<?> clazz, String key) {

//#################################################################################################
/**
* Load an asset from a resource and return the content as byte array.
* Load an asset from a resource and return the content as a byte array.
*/
public static byte[] assetAsByteArray(Resources res, String path) throws IOException {
InputStream is = res.getAssets().open(path);
Expand Down
2 changes: 1 addition & 1 deletion src/de/robv/android/xposed/services/BaseService.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public abstract class BaseService {
public static final int F_OK = 0;

/**
* Checks whether the services accesses files directly (instead of using IPC).
* Checks whether the services access files directly (instead of using IPC).
* @return {@code true} in case direct access is possible.
*/
public boolean hasDirectFileAccess() {
Expand Down