summaryrefslogtreecommitdiff
path: root/source/github-helpers/github-url.ts
diff options
context:
space:
mode:
authorGravatar Federico Brigante <me@fregante.com> 2023-07-08 20:54:43 +0200
committerGravatar GitHub <noreply@github.com> 2023-07-08 20:54:43 +0200
commitc864a20b57bb433aaf3952f88d83c9fc481ae6ff (patch)
tree60cc22a87e476f1552a7638f6c11996864ca0e8d /source/github-helpers/github-url.ts
parentd1b4fce11e9e51240325cbc67e39abe38db35dd2 (diff)
downloadrefined-github-4c32bbc5297e4b18c55a5d8fe47f8f1b6e9636e9.tar.gz
refined-github-4c32bbc5297e4b18c55a5d8fe47f8f1b6e9636e9.tar.zst
refined-github-4c32bbc5297e4b18c55a5d8fe47f8f1b6e9636e9.zip
Update dependencies (#6766)23.7.8
Diffstat (limited to 'source/github-helpers/github-url.ts')
-rw-r--r--source/github-helpers/github-url.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/github-helpers/github-url.ts b/source/github-helpers/github-url.ts
index 8f767e84..67f33e10 100644
--- a/source/github-helpers/github-url.ts
+++ b/source/github-helpers/github-url.ts
@@ -9,7 +9,7 @@ export default class GitHubURL {
branch = '';
filePath = '';
- private internalUrl: URL;
+ private readonly internalUrl: URL;
constructor(url: string) {
// Use Facade pattern instead of inheritance #3193