Skip to content

Commit

Permalink
Merge pull request #479 from jamashita/develop
Browse files Browse the repository at this point in the history
Merge pull request #477 from jamashita/release
  • Loading branch information
jamashita authored Jul 6, 2024
2 parents 42d7345 + f3355ea commit 1f18a18
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/ulid/ULID.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class ULID extends ValueObject {
return ULID.regex().test(str);
}

public constructor(id: string) {
private constructor(id: string) {
super();
this.id = id;
}
Expand Down
2 changes: 1 addition & 1 deletion src/url/URL.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class URL extends ValueObject {
return URL.regex().test(str);
}

public constructor(url: string) {
private constructor(url: string) {
super();
this.url = url;
}
Expand Down
2 changes: 1 addition & 1 deletion src/uuid/UUID.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class UUID extends ValueObject {
return validate(str);
}

public constructor(id: string) {
private constructor(id: string) {
super();
this.id = id;
}
Expand Down
2 changes: 1 addition & 1 deletion src/zeit/Zeit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class Zeit extends ValueObject {
return zeit.isValid();
}

public constructor(zeit: Dayjs) {
private constructor(zeit: Dayjs) {
super();
this.zeit = zeit;
}
Expand Down

0 comments on commit 1f18a18

Please sign in to comment.