Skip to content

Commit

Permalink
Commented precondition
Browse files Browse the repository at this point in the history
  • Loading branch information
nimakarimipour committed Jul 13, 2022
1 parent 09cda4c commit cdaf034
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ public static Factory<Fix> factory(Config config, FieldDeclarationAnalysis analy
field.variables.addAll(variables);
});
}
Preconditions.checkArgument(info[7].equals("nullable"), "unsupported annotation: " + info[7]);
// TODO: Uncomment preconditions below once NullAway 0.9.9 is released.
// Preconditions.checkArgument(info[7].equals("nullable"), "unsupported annotation: " + info[7]);
return new Fix(new Change(location, config.nullableAnnot, true), info[6], info[8], info[9]);
};
}
Expand Down

0 comments on commit cdaf034

Please sign in to comment.