Skip to content
This repository has been archived by the owner on May 4, 2022. It is now read-only.

Commit

Permalink
Add a flag to suppress the use of Objects.requireNonNull
Browse files Browse the repository at this point in the history
  • Loading branch information
cushon committed Feb 14, 2017
1 parent 3c696b8 commit 9a2de2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ protected Gen(Context context) {
: options.isSet(G_CUSTOM, "vars");
genCrt = options.isSet(XJCOV);
debugCode = options.isSet("debugcode");
allowBetterNullChecks = target.hasObjects();
allowBetterNullChecks = options.getBoolean("allowBetterNullChecks", target.hasObjects());
pool = new Pool(types);

// ignore cldc because we cannot have both stackmap formats
Expand Down

0 comments on commit 9a2de2a

Please sign in to comment.