Skip to content

Commit

Permalink
docs: reformat javadoc per #7003 (review)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong committed Oct 5, 2024
1 parent 6c7eb2e commit caaa81f
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,14 @@ public class CarthageAnalyzer extends AbstractFileTypeAnalyzer {
* dependency version. The version can be a commit ref, so we can't assume
* it's a number
*
* Example values: - binary "https://dl.google.com/geosdk/GoogleMaps.json"
* "7.2.0" - git "https://gitlab.matrix.org/matrix-org/olm.git" "3.2.16" -
* github "alinradut/SwiftEntryKit"
* "95f4a08f41ddcf2c02e2b22789038774c8c94df5"" - github
* "CocoaLumberjack/CocoaLumberjack" "3.8.5" - github "realm/realm-swift"
* "v10.44.0"
* Example values:
* <ul>
* <li>binary "https://dl.google.com/geosdk/GoogleMaps.json" "7.2.0"</li>
* <li>git "https://gitlab.matrix.org/matrix-org/olm.git" "3.2.16"</li>
* <li>github "alinradut/SwiftEntryKit" "95f4a08f41ddcf2c02e2b22789038774c8c94df5"</li>
* <li>github "CocoaLumberjack/CocoaLumberjack" "3.8.5"</li>
* <li>github "realm/realm-swift" "v10.44.0"</li>
* </ul>
*/
private static final Pattern CARTFILE_RESOLVED_DEPENDENCY_PATTERN = Pattern.compile("(github|git|binary) \"([^\"]+)\" \"([^\"]+)\"");

Expand Down

0 comments on commit caaa81f

Please sign in to comment.