We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2613cb1 commit ebb1563Copy full SHA for ebb1563
core-codemods/src/main/java/io/codemodder/codemods/SecureRandomCodemod.java
@@ -11,7 +11,10 @@
11
import javax.inject.Inject;
12
13
/** Turns {@link java.util.Random} into {@link java.security.SecureRandom}. */
14
-@Codemod(id = "pixee:java/secure-random", reviewGuidance = ReviewGuidance.MERGE_WITHOUT_REVIEW)
+@Codemod(
15
+ id = "pixee:java/secure-random",
16
+ reviewGuidance = ReviewGuidance.MERGE_WITHOUT_REVIEW,
17
+ executionPriority = CodemodExecutionPriority.LOW)
18
public final class SecureRandomCodemod extends SarifPluginJavaParserChanger<ObjectCreationExpr> {
19
20
private static final String DETECTION_RULE =
0 commit comments