-
Notifications
You must be signed in to change notification settings - Fork 50
improve validation #101
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
improve validation #101
Conversation
@@ -388,7 +441,7 @@ private void addValidationError(String message, | |||
private class Validation { | |||
|
|||
final Set<String> events = new HashSet<>(); | |||
final Set<String> functions = new HashSet<>(); | |||
final Set<String> functions = new HashSet(); |
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.
unchecked: unchecked conversion
(at-me in a reply with help
or ignore
)
@@ -45,7 +49,7 @@ | |||
|
|||
private static final Logger logger = LoggerFactory.getLogger(WorkflowValidatorImpl.class); | |||
private boolean schemaValidationEnabled = true; | |||
private List<ValidationError> validationErrors = new ArrayList<>(); | |||
private List<ValidationError> validationErrors = new ArrayList(); |
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.
unchecked: unchecked conversion
(at-me in a reply with help
or ignore
)
@lukonjun very nice thank you!! |
@lukonjun if you want to amend these 2 musedev reported comments let me know :) |
…un/sdk-java into improve-dsl-validation-81 Signed-off-by: Lucas Dario Stocksmeier <lucas@stocksmeier.de>
@tsurdilo musedev checks are now green |
Related to #81