Skip to content
Merged
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
10 changes: 6 additions & 4 deletions src/main/java/com/github/packageurl/PackageURL.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,17 @@ public PackageURL(final String type, final String name) throws MalformedPackageU
/**
* Constructs a new PackageURL object.
*
* @param type the type of package (i.e. maven, npm, gem, etc)
* @param type the type of package (i.e. maven, npm, gem, etc)
* @param namespace the name prefix (i.e. group, owner, organization)
* @param name the name of the package
* @param version the version of the package
* @param name the name of the package
* @param version the version of the package
* @param qualifiers an array of key/value pair qualifiers
* @param subpath the subpath string
* @param subpath the subpath string
* @throws MalformedPackageURLException if parsing fails
* @since 1.0.0
* @deprecated use {@link #PackageURL(String, String, String, String, Map, String)} instead
*/
@Deprecated
public PackageURL(final String type, final String namespace, final String name, final String version,
final TreeMap<String, String> qualifiers, final String subpath)
throws MalformedPackageURLException {
Expand Down