update meta.ps1

rename $this to $obj to avoid saving over keyword.
This commit is contained in:
onyx-and-iris
2022-01-08 20:30:36 +00:00
parent 0e11648078
commit 2775d64e47
3 changed files with 8 additions and 13 deletions

View File

@@ -171,8 +171,7 @@ class Vban {
class VbanInstream : Vban {
# Constructor
VbanInstream ([int]$id) : base ($id)
{
VbanInstream ([int]$id) : base ($id){
$this.direction = "in"
}
}
@@ -180,8 +179,7 @@ class VbanInstream : Vban {
class VbanOutstream : Vban {
# Constructor
VbanOutstream ([int]$id) : base ($id)
{
VbanOutstream ([int]$id) : base ($id){
$this.direction = "out"
}
}