Skip to content
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

Fix javadoc errors #370

Merged
merged 1 commit into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ public static String getCatchErrorResult(BlockStartNode startNode) {

/**
* Checks to see if event should be sent to client
* @param event - the event to check
* @param eventName - the event to check
* @return true if event should be sent to client
*/
public static boolean shouldSendEvent(String eventName) {
Expand Down Expand Up @@ -1069,7 +1069,7 @@ private static List<String> createIncludeLists() {

/**
* Check if flowNode is the last node of the pipeline.
* @param flowNode
* @param flowNode flowNode to check
* @return true if flowNode is the last node of the pipeline
*/
public static boolean isLastNode(FlowNode flowNode) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ private static String removeRefs(String gitReference) {

/**
* Filters the user info given a valid HTTP URL.
* @param urlStr
* @param urlStr input URL
* @return URL without user info.
*/
public static String filterSensitiveInfo(String urlStr) {
Expand Down
Loading