remove constructor annotations

This commit is contained in:
2022-12-17 17:47:42 +00:00
parent 408218ea32
commit deb3da15ea
6 changed files with 1 additions and 8 deletions

View File

@@ -29,7 +29,6 @@ class IVban {
}
class Vban : IVban {
# Constructor
Vban ([int]$index, [string]$direction) : base ($index, $direction) {
}
@@ -174,14 +173,12 @@ class Vban : IVban {
class VbanInstream : Vban {
# Constructor
VbanInstream ([int]$index, [string]$direction) : base ($index, $direction) {
}
}
class VbanOutstream : Vban {
# Constructor
VbanOutstream ([int]$index, [string]$direction) : base ($index, $direction) {
}
}