Skip to content

Commit

Permalink
add final to static strings that need it [1]
Browse files Browse the repository at this point in the history
Summary:
^
This should help in kotlin conversions.

In this diff, I am running jast codemod on instagram

> arc jast -plugin fbsource//xplat/java/com/facebook/tools/jast/codemods/staticconstfields:staticconstfield -target fbandroid/java/com/instagram:instagram -deep

Reviewed By: jocelynluizzi13

Differential Revision: D53266142

fbshipit-source-id: 5cd40f77860278bb0aac9d9a7a21c30c6a3efad9
  • Loading branch information
Mona Hashem Abdelaleim authored and facebook-github-bot committed Feb 2, 2024
1 parent 3cb5c85 commit 0455608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/com/facebook/soloader/SoLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public class SoLoader {
/* package */ @Nullable static SoFileLoader sSoFileLoader;

// optional identifier strings to facilitate bytecode analysis
public static String VERSION = "0.10.5";
public static final String VERSION = "0.10.5";

/**
* locking controlling the list of SoSources. We want to allow long running iterations over the
Expand Down

0 comments on commit 0455608

Please sign in to comment.