Skip to content

Commit b617459

Browse files
committed
style: remove unnecessary cast
1 parent 31b6f3a commit b617459

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/github/packageurl/PackageURL.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public PackageURL(final String purl) throws MalformedPackageURLException {
205205
* @throws MalformedPackageURLException if parsing fails
206206
*/
207207
public PackageURL(final String type, final String name) throws MalformedPackageURLException {
208-
this(type, null, name, null, (Map<String, String>) null, null);
208+
this(type, null, name, null, null, null);
209209
}
210210

211211
/**

0 commit comments

Comments
 (0)