-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Skip LLM codemods when no service is available #418
Conversation
47220e4
to
8991795
Compare
import io.codemodder.RuleSarif; | ||
import io.codemodder.SarifPluginRawFileChanger; | ||
import java.util.Objects; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would add a comment here when to use this type since it's public.
core-codemods/src/main/java/io/codemodder/codemods/DefaultCodemods.java
Outdated
Show resolved
Hide resolved
this.openAI = Objects.requireNonNull(openAI); | ||
} | ||
|
||
@Override |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would add a comment here that I think subclassses shouldn't override this without also considering the same logic?
Quality Gate passedIssues Measures |
This codemod does not inherit from the base class with the existing check so it did not benefit from the work in #418.
No description provided.