Skip to content

Commit

Permalink
fix: #5671 Clean code
Browse files Browse the repository at this point in the history
  • Loading branch information
nhumblot committed Jun 21, 2023
1 parent 2727c54 commit 394f929
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,8 @@ public class CMakeAnalyzer extends AbstractFileTypeAnalyzer {
/**
* Regex to extract product and version information.
*
* Group 1: Product
*
* Group 2: Version
* <p>Group 1: Product</p>
* <p>Group 2: Version</p>
*/
private static final Pattern SET_VERSION = Pattern
.compile("^\\s*set\\s*\\(\\s*(\\w+)_version\\s+\"?([^\")]*)\\s*\"?\\)", REGEX_OPTIONS);
Expand Down Expand Up @@ -349,8 +348,8 @@ protected String getAnalyzerEnabledSettingKey() {
* initialized by other variables and end up forming an unresolvable
* chain.
*
* This method takes the resolved variables map as an input and will return
* a new map, without the keys generate an infinite resolution chain.
* <p>This method takes the resolved variables map as an input and will return
* a new map, without the keys generating an infinite resolution chain.</p>
*
* @param vars variables initialization detected in the CMake build file
*
Expand Down

0 comments on commit 394f929

Please sign in to comment.