Skip to content

Commit

Permalink
fbandroid/libraries/soloader/java/com/facebook/soloader/SoLoader.java
Browse files Browse the repository at this point in the history
Reviewed By: jocelynluizzi13

Differential Revision: D60278774

fbshipit-source-id: 3f37b486a0ff93bf3416a2306d95950217f86ace
  • Loading branch information
generatedunixname89002005287564 authored and facebook-github-bot committed Jul 29, 2024
1 parent b343ceb commit f4b69a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions java/com/facebook/soloader/SoLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ private static boolean initEnableConfig(Context context) {
return (null == metaData || metaData.getBoolean(name, true));
}

private static void initSoSources(Context context, int flags) throws IOException {
private static void initSoSources(@Nullable Context context, int flags) throws IOException {
if (sSoSources != null) {
return;
}
Expand Down Expand Up @@ -580,7 +580,7 @@ private static synchronized void initSoLoader(
sSoFileLoader = new InstrumentedSoFileLoader(new SoFileLoaderImpl());
}

private static int getAppType(Context context) {
private static int getAppType(@Nullable Context context) {
if (sAppType != AppType.UNSET) {
return sAppType;
}
Expand Down

0 comments on commit f4b69a5

Please sign in to comment.