Skip to content

Commit 9b9cde4

Browse files
Merge pull request #220 from package-url/scratch/refactor-stringutils
chore!: refactor PackageURL by moving String functions to StringUtil
2 parents 81fb1f2 + ce08baa commit 9b9cde4

File tree

9 files changed

+421
-256
lines changed

9 files changed

+421
-256
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public MalformedPackageURLException(@Nullable String msg) {
5353
*
5454
* @param message the detail message
5555
* @param cause the cause
56-
* @since 1.6.0
56+
* @since 2.0.0
5757
*/
5858
public MalformedPackageURLException(String message, Throwable cause) {
5959
super(message, cause);
@@ -64,7 +64,7 @@ public MalformedPackageURLException(String message, Throwable cause) {
6464
* message of {@code (cause==null ? null : cause.toString())}.
6565
*
6666
* @param cause the cause
67-
* @since 1.6.0
67+
* @since 2.0.0
6868
*/
6969
public MalformedPackageURLException(Throwable cause) {
7070
super(cause);

0 commit comments

Comments
 (0)