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

[MJAVADOC-755] Use java.lang.String instead of StringUtils #208

Merged
merged 3 commits into from
Jul 6, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
typo
  • Loading branch information
elharo committed Jul 6, 2023
commit 4bf864ec69fe0be51ee4a16d9d15c98e1d8bb866
Original file line number Diff line number Diff line change
Expand Up @@ -199,12 +199,12 @@ protected static List<String> getExcludedPackages(
}

/**
* Convenience method to wrap an argument value in single quotes (i.e. <code>'</code>). Intended for values which
* Convenience method to wrap a command line option-argument in single quotes (i.e. <code>'</code>). Intended for values which
* may contain whitespace. <br>
* To prevent javadoc errors, line feeds (i.e. <code>\n</code>) are replaces with spaces.
* Line feeds (i.e. <code>\n</code>) are replaced with spaces, and single quotes are backslash escaped.
*
* @param value the argument value
* @return quoted argument
* @param value the option-argument
* @return quoted option-argument
*/
protected static String quotedArgument(String value) {
String arg = value;
Expand Down