Skip to content

Commit

Permalink
default shadeInlining to true when running standalone
Browse files Browse the repository at this point in the history
  • Loading branch information
wagyourtail committed Nov 25, 2024
1 parent 77afef1 commit cb724f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/xyz/wagyourtail/jvmdg/cli/Flags.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public class Flags {
*
* @since 1.2.0
*/
public boolean shadeInlining = Boolean.getBoolean(Constants.SHADE_INLINING);
public boolean shadeInlining = Boolean.getBoolean(System.getProperty(Constants.SHADE_INLINING, "true"));
/**
* this skips applying stubs for the specified input class version, this will still apply the
* {@link xyz.wagyourtail.jvmdg.version.VersionProvider#otherTransforms(ClassNode, Set, Function, Set)}
Expand Down

0 comments on commit cb724f4

Please sign in to comment.