Skip to content

Commit

Permalink
Backed out changeset a43cb4e54949
Browse files Browse the repository at this point in the history
Trying this a different way.
  • Loading branch information
icculus committed Oct 5, 2020
1 parent 913aa61 commit efd665e
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 8 deletions.
5 changes: 0 additions & 5 deletions src/core/android/SDL_android.c
Expand Up @@ -2284,11 +2284,6 @@ void *SDL_AndroidGetActivity(void)
return (*env)->CallStaticObjectMethod(env, mActivityClass, midGetContext);
}

jclass Android_GetActivityClass(void)
{
return mActivityClass;
}

int SDL_GetAndroidSDKVersion(void)
{
static int sdk_version;
Expand Down
2 changes: 0 additions & 2 deletions src/core/android/SDL_android.h
Expand Up @@ -140,8 +140,6 @@ void Android_ActivityMutex_Lock(void);
void Android_ActivityMutex_Unlock(void);
void Android_ActivityMutex_Lock_Running(void);

jclass Android_GetActivityClass(void);

/* Ends C function definitions when using C++ */
#ifdef __cplusplus
/* *INDENT-OFF* */
Expand Down
1 change: 1 addition & 0 deletions src/misc/SDL_url.c
Expand Up @@ -18,6 +18,7 @@
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/

#include "../SDL_internal.h"
#include "SDL_misc.h"
#include "SDL_error.h"
Expand Down
1 change: 0 additions & 1 deletion src/misc/android/SDL_sysurl.c
Expand Up @@ -25,7 +25,6 @@
int
SDL_SYS_OpenURL(const char *url)
{
jclass mActivityClass = Android_GetActivityClass();
JNIEnv *env = Android_JNI_GetEnv();
jstring jurl = (*env)->NewStringUTF(env, url);
const int ret = (*env)->CallStaticIntMethod(env, mActivityClass, midOpenURL, jurl);
Expand Down

0 comments on commit efd665e

Please sign in to comment.