Skip to content

Commit 2d6e01e

Browse files
authored
Merge pull request #33 from per1234/remove-comments
Remove obsolete comments from source code
2 parents b1af57e + 0950be8 commit 2d6e01e

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

libraries/db/library.go

-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ var re = regexp.MustCompile("^([a-zA-Z0-9](?:[a-zA-Z0-9._\\- ]*[a-zA-Z0-9])?) *(
7070

7171
// ExtractDependenciesList extracts dependencies from the "depends" field of library.properties
7272
func ExtractDependenciesList(depends string) ([]*Dependency, error) {
73-
// TODO: merge this method with metadata.IsValidDependency
7473
deps := []*Dependency{}
7574
depends = strings.TrimSpace(depends)
7675
if depends == "" {

libraries/metadata/metadata.go

-5
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,6 @@ Package metadata handles library.properties metadata.
2727
The functions in this package helps on parsing/validation of
2828
library.properties metadata. All metadata are parsed into a
2929
LibraryMetadata structure.
30-
31-
The source of may be any of the following:
32-
- a github.PullRequest
33-
- a github.RepositoryContent
34-
- a byte[]
3530
*/
3631
package metadata
3732

0 commit comments

Comments
 (0)